|
1 | 1 | # Configuring Rustfmt
|
2 | 2 |
|
3 |
| -Rustfmt is designed to be very configurable. You can create a TOML file called `rustfmt.toml` or `.rustfmt.toml`, place it in the project or any other parent directory and it will apply the options in that file. If none of these directories contain such a file, both your home directory and a directory called `rustfmt` in your [global config directory](https://docs.rs/dirs/4.0.0/dirs/fn.config_dir.html) (e.g. `.config/rustfmt/`) are checked as well. |
| 3 | +Rustfmt is designed to be very configurable. You can create a TOML file called `rustfmt.toml` or `.rustfmt.toml`, place it in the project or any other parent directory and it will apply the options in that file. If none of these directories contain such a file, both your home directory and a directory called `rustfmt` in your [global config directory](https://docs.rs/dirs/5.0.1/dirs/fn.config_dir.html) (e.g. `.config/rustfmt/`) are checked as well. |
4 | 4 |
|
5 | 5 | A possible content of `rustfmt.toml` or `.rustfmt.toml` might look like this:
|
6 | 6 |
|
@@ -1050,15 +1050,25 @@ Max width for code snippets included in doc comments. Only used if [`format_code
|
1050 | 1050 |
|
1051 | 1051 | ## `format_generated_files`
|
1052 | 1052 |
|
1053 |
| -Format generated files. A file is considered generated |
1054 |
| -if any of the first five lines contain a `@generated` comment marker. |
| 1053 | +Format generated files. A file is considered generated if any of the first several lines contain a `@generated` comment marker. The number of lines to check is configured by `generated_marker_line_search_limit`. |
| 1054 | + |
1055 | 1055 | By default, generated files are reformatted, i. e. `@generated` marker is ignored.
|
1056 | 1056 | This option is currently ignored for stdin (`@generated` in stdin is ignored.)
|
1057 | 1057 |
|
1058 | 1058 | - **Default value**: `true`
|
1059 | 1059 | - **Possible values**: `true`, `false`
|
1060 | 1060 | - **Stable**: No (tracking issue: [#5080](https://github.com/rust-lang/rustfmt/issues/5080))
|
1061 | 1061 |
|
| 1062 | +## `generated_marker_line_search_limit` |
| 1063 | + |
| 1064 | +Number of lines to check for a `@generated` pragma header, starting from the top of the file. Setting this value to `0` will treat all files as non-generated. When`format_generated_files` is `true`, this option has no effect. |
| 1065 | + |
| 1066 | +- **Default value**: `5` |
| 1067 | +- **Possible values**: any positive integer |
| 1068 | +- **Stable**: No (tracking issue: [#5080](https://github.com/rust-lang/rustfmt/issues/5080)) |
| 1069 | + |
| 1070 | +See also [format_generated_files](#format_generated_files) link here. |
| 1071 | + |
1062 | 1072 | ## `format_macro_matchers`
|
1063 | 1073 |
|
1064 | 1074 | Format the metavariable matching patterns in macros.
|
@@ -1098,7 +1108,7 @@ See also [`format_macro_bodies`](#format_macro_bodies).
|
1098 | 1108 |
|
1099 | 1109 | ## `format_macro_bodies`
|
1100 | 1110 |
|
1101 |
| -Format the bodies of macros. |
| 1111 | +Format the bodies of declarative macro definitions. |
1102 | 1112 |
|
1103 | 1113 | - **Default value**: `true`
|
1104 | 1114 | - **Possible values**: `true`, `false`
|
@@ -1248,12 +1258,20 @@ Control the case of the letters in hexadecimal literal values
|
1248 | 1258 |
|
1249 | 1259 | ## `hide_parse_errors`
|
1250 | 1260 |
|
1251 |
| -Do not show parse errors if the parser failed to parse files. |
| 1261 | +This option is deprecated and has been renamed to `show_parse_errors` to avoid confusion around the double negative default of `hide_parse_errors=false`. |
1252 | 1262 |
|
1253 | 1263 | - **Default value**: `false`
|
1254 | 1264 | - **Possible values**: `true`, `false`
|
1255 | 1265 | - **Stable**: No (tracking issue: [#3390](https://github.com/rust-lang/rustfmt/issues/3390))
|
1256 | 1266 |
|
| 1267 | +## `show_parse_errors` |
| 1268 | + |
| 1269 | +Show parse errors if the parser failed to parse files. |
| 1270 | + |
| 1271 | +- **Default value**: `true` |
| 1272 | +- **Possible values**: `true`, `false` |
| 1273 | +- **Stable**: No (tracking issue: [#5977](https://github.com/rust-lang/rustfmt/issues/5977)) |
| 1274 | + |
1257 | 1275 | ## `ignore`
|
1258 | 1276 |
|
1259 | 1277 | Skip formatting files and directories that match the specified pattern.
|
@@ -1288,6 +1306,15 @@ If you want to ignore every file under the directory where you put your rustfmt.
|
1288 | 1306 | ignore = ["/"]
|
1289 | 1307 | ```
|
1290 | 1308 |
|
| 1309 | +If you want to allow specific paths that would otherwise be ignored, prefix those paths with a `!`: |
| 1310 | + |
| 1311 | +```toml |
| 1312 | +ignore = ["bar_dir/*", "!bar_dir/*/what.rs"] |
| 1313 | +``` |
| 1314 | + |
| 1315 | +In this case, all files under `bar_dir` will be ignored, except files like `bar_dir/sub/what.rs` |
| 1316 | +or `bar_dir/another/what.rs`. |
| 1317 | + |
1291 | 1318 | ## `imports_indent`
|
1292 | 1319 |
|
1293 | 1320 | Indent style of imports
|
@@ -1655,7 +1682,7 @@ use core::slice;
|
1655 | 1682 |
|
1656 | 1683 | Controls whether arm bodies are wrapped in cases where the first line of the body cannot fit on the same line as the `=>` operator.
|
1657 | 1684 |
|
1658 |
| -The Style Guide requires that bodies are block wrapped by default if a line break is required after the `=>`, but this option can be used to disable that behavior to prevent wrapping arm bodies in that event, so long as the body does not contain multiple statements nor line comments. |
| 1685 | +The Style Guide requires that bodies are block wrapped by default if a line break is required after the `=>`, but this option can be used to disable that behavior to prevent wrapping arm bodies in that event, so long as the body contains neither multiple statements nor line comments. |
1659 | 1686 |
|
1660 | 1687 | - **Default value**: `true`
|
1661 | 1688 | - **Possible values**: `true`, `false`
|
|
0 commit comments