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
This option has been replaced with `linters.settings.wrapcheck.ignore-sig-regexps`.
1092
+
This option has been renamed to `linters.settings.wrapcheck.ignore-sig-regexps`.
1093
1093
1094
1094
<details>
1095
1095
<summary>v1</summary>
@@ -1118,7 +1118,7 @@ linters:
1118
1118
1119
1119
#### `linters-settings.wrapcheck.ignoreSigs`
1120
1120
1121
-
This option has been replaced with `linters.settings.wrapcheck.ignore-sigs`.
1121
+
This option has been renamed to `linters.settings.wrapcheck.ignore-sigs`.
1122
1122
1123
1123
<details>
1124
1124
<summary>v1</summary>
@@ -1167,22 +1167,25 @@ output:
1167
1167
```yaml
1168
1168
output:
1169
1169
formats:
1170
+
checkstyle:
1171
+
path: 'report.xml'
1172
+
json:
1173
+
path: stdout
1170
1174
text:
1171
1175
path: stdout
1172
1176
color: true
1173
-
json:
1174
-
path: stdout
1175
-
checkstyle:
1176
-
path: 'report.xml'
1177
1177
```
1178
1178
1179
1179
</details>
1180
1180
1181
-
#### `output.formats[].format: name`
1181
+
#### `output.formats[].format: <name>`
1182
+
1183
+
The property `output.formats[].format` has been replaced with `output.formats[].<format_name>`.
1182
1184
1183
-
The property `output.formats[].format` has been replaced with `output.formats[].formatName`.
1185
+
The formats `colored-line-number`, `colored-tab` have been replaced by an option `colors`:
1184
1186
1185
-
The formats `colored-line-number`, `colored-tab` has been removed. Use `output.formats[].text.colors: true` and `output.formats[].tab.colors: true` instead.
1187
+
- `output.formats[].text.colors: true`
1188
+
- `output.formats[].tab.colors: true`.
1186
1189
1187
1190
<details>
1188
1191
<summary>v1</summary>
@@ -1222,11 +1225,13 @@ This property is `true` by default.
1222
1225
1223
1226
#### `output.sort-order`
1224
1227
1225
-
This property has new default: [`linter`, `file`] instead of [`file`].
1228
+
This property has new default: `['linter', 'file']`instead of `['file']`.
1226
1229
1227
1230
#### `output.sort-results`
1228
1231
1229
-
The property has been removed. The output results are always sorted.
1232
+
The property has been removed.
1233
+
1234
+
The output results are always sorted.
1230
1235
1231
1236
#### `output.uniq-by-line`
1232
1237
@@ -1485,29 +1490,16 @@ linters:
1485
1490
1486
1491
#### `linters.fast`
1487
1492
1488
-
This property has been replaced with `linters.default: fast`. It is not a strictly equivalent.
1489
-
1490
-
<details>
1491
-
<summary>v1</summary>
1492
-
1493
-
```yaml
1494
-
linters:
1495
-
fast: true
1496
-
```
1497
-
1498
-
</details>
1499
-
1500
-
<details>
1501
-
<summary>v2</summary>
1502
-
1503
-
```yaml
1504
-
linters:
1505
-
default: fast
1506
-
```
1493
+
This property has been removed.
1507
1494
1508
-
</details>
1495
+
There are 2 new options (they are not strictly equivalent to the previous option):
1509
1496
1510
-
Also, the new flag option `--fast-only` filters enabled linters to keep only "fast" linters.
1497
+
1. `linters.default: fast`: set all "fast" linters as the default set of linters.
1498
+
```yaml
1499
+
linters:
1500
+
default: fast
1501
+
```
1502
+
2. `--fast-only`: filters all enabled linters to keep only "fast" linters.
0 commit comments