@anolilab/eslint-config 14.0.23 → 14.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +36 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## @anolilab/eslint-config [14.0.24](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@14.0.23...@anolilab/eslint-config@14.0.24) (2023-10-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update readme with new settings ([0e9fdff](https://github.com/anolilab/javascript-style-guide/commit/0e9fdffd3638fffb8d06755b05cea1c0777df98d))
|
|
7
|
+
|
|
1
8
|
## @anolilab/eslint-config [14.0.23](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@14.0.22...@anolilab/eslint-config@14.0.23) (2023-10-10)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -320,6 +320,42 @@ To disable the info, set the value to `false`.
|
|
|
320
320
|
}
|
|
321
321
|
```
|
|
322
322
|
|
|
323
|
+
#### info_on_disabling_jsonc_sort_keys_rule
|
|
324
|
+
|
|
325
|
+
Type: `boolean`
|
|
326
|
+
|
|
327
|
+
Default: `undefined`
|
|
328
|
+
|
|
329
|
+
To disable the info, set the value to `false`.
|
|
330
|
+
|
|
331
|
+
```json
|
|
332
|
+
{
|
|
333
|
+
"anolilab": {
|
|
334
|
+
"eslint-config": {
|
|
335
|
+
"info_on_disabling_jsonc_sort_keys_rule": false
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
#### info_on_disabling_etc_no_deprecated
|
|
342
|
+
|
|
343
|
+
Type: `boolean`
|
|
344
|
+
|
|
345
|
+
Default: `undefined`
|
|
346
|
+
|
|
347
|
+
To disable the info, set the value to `false`.
|
|
348
|
+
|
|
349
|
+
```json
|
|
350
|
+
{
|
|
351
|
+
"anolilab": {
|
|
352
|
+
"eslint-config": {
|
|
353
|
+
"info_on_disabling_etc_no_deprecated": false
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
```
|
|
358
|
+
|
|
323
359
|
#### info_on_testing_library_framework
|
|
324
360
|
|
|
325
361
|
Type: `boolean`
|