Remove rustfmt.toml.

The CI rustfmt checker uses `stable` rust, not `nightly`, but the
config options in `rustfmt.toml` only work on nightly -- on stable,
there are ignored with warnings. This means that devs running stable
get a lot of warnings and devs running nightly will accidentally format
in a way that the CI checker forbids. (specifically, using
`where_single_line`). E.g.:

```
$ cargo +stable fmt -- --check
Warning: can't set `indent_style = Block`, unstable features are only available in nightly channel.
Warning: can't set `where_single_line = true`, unstable features are only available in nightly channel.
...etc

$ cargo +nightly fmt -- --check
-where
-    N: RealField,
-{
+where N: RealField {
...etc
```

Just removing the toml fixes this problem.
This commit is contained in:
Jenan Wise 2020-06-22 19:13:43 -07:00
parent 2198b0e6b4
commit eca17586a6
1 changed files with 0 additions and 3 deletions

View File

@ -1,3 +0,0 @@
unstable_features = true
indent_style = "Block"
where_single_line = true