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-13
Original file line number
Diff line number
Diff line change
@@ -1297,27 +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::io;
1304
+
usestd::mem;
1305
+
1303
1306
use dolor;
1304
1307
use ipsum;
1305
1308
use lorem;
1306
1309
use sit;
1307
-
usestd::io;
1308
-
usestd::mem;
1309
1310
```
1310
1311
1311
-
#### `true`:
1312
+
#### `false`:
1312
1313
1313
-
```rust
1314
-
usestd::io;
1315
-
usestd::mem;
1316
1314
1315
+
```rust
1317
1316
use dolor;
1318
1317
use ipsum;
1319
1318
use lorem;
1320
1319
use sit;
1320
+
usestd::io;
1321
+
usestd::mem;
1321
1322
```
1322
1323
1323
1324
See also [`reorder_imports`](#reorder_imports).
@@ -1359,7 +1360,11 @@ Reorder `extern crate` statements in group
1359
1360
-**Possible values**: `true`, `false`
1360
1361
-**Stable**: No
1361
1362
1362
-
#### `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`:
1363
1368
1364
1369
**Note:** This only takes effect when [`reorder_extern_crates`](#reorder_extern_crates) is set to `true`.
1365
1370
@@ -1373,10 +1378,6 @@ extern crate lorem;
1373
1378
externcrate sit;
1374
1379
```
1375
1380
1376
-
#### `false`:
1377
-
1378
-
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.
1379
-
1380
1381
## `reorder_modules`
1381
1382
1382
1383
Reorder `mod` declarations alphabetically in group.
@@ -1385,7 +1386,7 @@ Reorder `mod` declarations alphabetically in group.
0 commit comments