Skip to content

Commit

Permalink
rustfmt: Use show_parse_errors (#27)
Browse files Browse the repository at this point in the history
`rustfmt` gives warning:

 Warning: the `hide_parse_errors` option is deprecated. Use
 `show_parse_errors` instead

As suggested use `show_parse_errors` and switch the boolean value.
  • Loading branch information
tcharding authored Sep 2, 2024
2 parents c40efdb + 3daf8e9 commit 2fc70c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ color = "Auto"
unstable_features = false
disable_all_formatting = false
skip_children = false
hide_parse_errors = false
show_parse_errors = true
error_on_line_overflow = false
error_on_unformatted = false
emit_mode = "Files"
Expand Down

0 comments on commit 2fc70c8

Please sign in to comment.