@anolilab/eslint-config 16.4.2 → 16.4.4
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 +17 -0
- package/README.md +2 -2
- package/dist/index.cjs +6 -6
- package/dist/index.d.cts +262 -146
- package/dist/index.d.mts +262 -146
- package/dist/index.d.ts +262 -146
- package/dist/index.mjs +7 -7
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## @anolilab/eslint-config [16.4.4](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@16.4.3...@anolilab/eslint-config@16.4.4) (2025-11-19)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **eslint:** integrate unused-imports plugin and disable no-unused-vars rules ([1969831](https://github.com/anolilab/javascript-style-guide/commit/196983121a0dce1950bd016b879c556c0d0b6bb8))
|
|
6
|
+
|
|
7
|
+
## @anolilab/eslint-config [16.4.3](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@16.4.2...@anolilab/eslint-config@16.4.3) (2025-11-16)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update eslint (minor) ([#959](https://github.com/anolilab/javascript-style-guide/issues/959)) ([a3df8b5](https://github.com/anolilab/javascript-style-guide/commit/a3df8b5b0cad5d4b46fb2fe80157fa589685d108))
|
|
12
|
+
* **deps:** update node engine compatibility and upgrade dependencies ([1a0d0e1](https://github.com/anolilab/javascript-style-guide/commit/1a0d0e16d48dd2fb67017cdf3f21988d6adf1cdc))
|
|
13
|
+
* **deps:** update package versions and configurations ([c0a4bbf](https://github.com/anolilab/javascript-style-guide/commit/c0a4bbf2809fce97461ff663e351c56e8037dc20))
|
|
14
|
+
* **deps:** update package versions and configurations ([e5b9cb5](https://github.com/anolilab/javascript-style-guide/commit/e5b9cb5195c4a9a4a481e9eb967fc5a0f92e1add))
|
|
15
|
+
* **eslint:** disable unicorn/no-nested-ternary rule due to sonarjs conflict ([ebb5ed3](https://github.com/anolilab/javascript-style-guide/commit/ebb5ed3d42c551e7037d1175b9fcc739239dbd81))
|
|
16
|
+
* **eslint:** resolve globals path for Vitest by using the correct directory ([a30ce47](https://github.com/anolilab/javascript-style-guide/commit/a30ce476d3ccdddf098db1489e39a8eff836d039))
|
|
17
|
+
|
|
1
18
|
## @anolilab/eslint-config [16.4.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@16.4.1...@anolilab/eslint-config@16.4.2) (2025-10-15)
|
|
2
19
|
|
|
3
20
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -230,7 +230,7 @@ Add the following settings to your `.vscode/settings.json`:
|
|
|
230
230
|
"source.organizeImports": "never"
|
|
231
231
|
},
|
|
232
232
|
|
|
233
|
-
// Silent the stylistic rules in
|
|
233
|
+
// Silent the stylistic rules in your IDE, but still auto fix them
|
|
234
234
|
"eslint.rules.customizations": [
|
|
235
235
|
{ "rule": "style/*", "severity": "off", "fixable": true },
|
|
236
236
|
{ "rule": "format/*", "severity": "off", "fixable": true },
|
|
@@ -324,7 +324,7 @@ lspconfig.eslint.setup(
|
|
|
324
324
|
"postcss"
|
|
325
325
|
},
|
|
326
326
|
settings = {
|
|
327
|
-
-- Silent the stylistic rules in
|
|
327
|
+
-- Silent the stylistic rules in your IDE, but still auto fix them
|
|
328
328
|
rulesCustomizations = customizations,
|
|
329
329
|
},
|
|
330
330
|
}
|