add config test

This commit is contained in:
csmoe 2018-05-06 09:23:04 +08:00
parent 7c246344f8
commit 5b121582e5
3 changed files with 11 additions and 1 deletions

View File

@ -1285,7 +1285,7 @@ fn main() {
} }
``` ```
### `true`: #### `true`:
```rust ```rust
fn main() { fn main() {
(foo()); (foo());

View File

@ -0,0 +1,5 @@
// rustfmt-remove_nested_parens: true
fn main() {
((((((foo()))))));
}

View File

@ -0,0 +1,5 @@
// rustfmt-remove_nested_parens: true
fn main() {
(foo());
}