You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Configurations.md
+14-14
Original file line number
Diff line number
Diff line change
@@ -1297,28 +1297,28 @@ Reorder import statements in group
1297
1297
1298
1298
**Note:** This option takes effect only when [`reorder_imports`](#reorder_imports) is set to `true`.
1299
1299
1300
-
#### `false` (default):
1300
+
#### `true` (default):
1301
1301
1302
1302
```rust
1303
-
usestd::mem;
1304
1303
usestd::io;
1304
+
usestd::mem;
1305
1305
1306
-
use lorem;
1307
-
use ipsum;
1308
1306
use dolor;
1307
+
use ipsum;
1308
+
use lorem;
1309
1309
use sit;
1310
1310
```
1311
1311
1312
-
#### `true`:
1312
+
#### `false`:
1313
1313
1314
-
```rust
1315
-
usestd::io;
1316
-
usestd::mem;
1317
1314
1315
+
```rust
1318
1316
use dolor;
1319
1317
use ipsum;
1320
1318
use lorem;
1321
1319
use sit;
1320
+
usestd::io;
1321
+
usestd::mem;
1322
1322
```
1323
1323
1324
1324
See also [`reorder_imports`](#reorder_imports).
@@ -1360,7 +1360,11 @@ Reorder `extern crate` statements in group
1360
1360
-**Possible values**: `true`, `false`
1361
1361
-**Stable**: No
1362
1362
1363
-
#### `true` (default):
1363
+
#### `false` (default):
1364
+
1365
+
This value has no influence beyond the effect of the [`reorder_extern_crates`](#reorder_extern_crates) option. Set [`reorder_extern_crates`](#reorder_extern_crates) to `false` if you do not want `extern crate` groups to be collapsed and ordered.
1366
+
1367
+
#### `true`:
1364
1368
1365
1369
**Note:** This only takes effect when [`reorder_extern_crates`](#reorder_extern_crates) is set to `true`.
1366
1370
@@ -1374,10 +1378,6 @@ extern crate lorem;
1374
1378
externcrate sit;
1375
1379
```
1376
1380
1377
-
#### `false`:
1378
-
1379
-
This value has no influence beyond the effect of the [`reorder_extern_crates`](#reorder_extern_crates) option. Set [`reorder_extern_crates`](#reorder_extern_crates) to `false` if you do not want `extern crate` groups to be collapsed and ordered.
1380
-
1381
1381
## `reorder_modules`
1382
1382
1383
1383
Reorder `mod` declarations alphabetically in group.
@@ -1386,7 +1386,7 @@ Reorder `mod` declarations alphabetically in group.
0 commit comments