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
@@ -1074,17 +1074,6 @@ Tells isort to overwrite in place using the same file handle.Comes at a performa
1074
1074
1075
1075
- --overwrite-in-place
1076
1076
1077
-
## Sorting Order
1078
-
1079
-
Use natural language or pythonic sorting. Valid values "default"=natural "pythonic"=python default sorting.
1080
-
1081
-
**Type:** String
1082
-
**Default:**`default`
1083
-
**Python & Config File Name:** sort_order
1084
-
**CLI Flags:**
1085
-
1086
-
- --sort-order
1087
-
1088
1077
## Reverse Sort
1089
1078
1090
1079
Reverses the ordering of imports.
@@ -1116,6 +1105,39 @@ Forces star imports above others to avoid overriding directly imported variables
1116
1105
**Python & Config File Name:** git_ignore
1117
1106
**CLI Flags:****Not Supported**
1118
1107
1108
+
## Format Error
1109
+
1110
+
Override the format used to print errors.
1111
+
1112
+
**Type:** String
1113
+
**Default:**`{error}: {message}`
1114
+
**Python & Config File Name:** format_error
1115
+
**CLI Flags:**
1116
+
1117
+
- --format-error
1118
+
1119
+
## Format Success
1120
+
1121
+
Override the format used to print success.
1122
+
1123
+
**Type:** String
1124
+
**Default:**`{success}: {message}`
1125
+
**Python & Config File Name:** format_success
1126
+
**CLI Flags:**
1127
+
1128
+
- --format-success
1129
+
1130
+
## Sort Order
1131
+
1132
+
Specify sorting function. Can be built in (natural[default] = force numbers to be sequential, native = Python's built-in sorted function) or an installable plugin.
1133
+
1134
+
**Type:** String
1135
+
**Default:**`natural`
1136
+
**Python & Config File Name:** sort_order
1137
+
**CLI Flags:**
1138
+
1139
+
- --sort-order
1140
+
1119
1141
## Show Version
1120
1142
1121
1143
Displays the currently installed version of isort.
@@ -1323,34 +1345,6 @@ Tells isort to format the given files according to an extensions formatting rule
1323
1345
1324
1346
- --ext-format
1325
1347
1326
-
## Format Errors
1327
-
1328
-
Define the format used to print errors.
1329
-
1330
-
**NOTE** Variables are `error` and `message`.
1331
-
The `error` variable prints `ERROR` with color depending on the --color option.
1332
-
1333
-
**Type:** String
1334
-
**Default:**`{error}: {message}`
1335
-
**Python & Config File Name:** format_errors
1336
-
**CLI Flags:**
1337
-
1338
-
- --format-errors
1339
-
1340
-
## Format Success
1341
-
1342
-
Define the format used to print successes.
1343
-
1344
-
**NOTE** Variables are `success` and `message`.
1345
-
The `success` variable prints `SUCCESS` with color depending on the --color option.
0 commit comments