@anolilab/eslint-config 16.3.3 → 16.4.1

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 CHANGED
@@ -1,3 +1,23 @@
1
+ ## @anolilab/eslint-config [16.4.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@16.4.0...@anolilab/eslint-config@16.4.1) (2025-10-15)
2
+
3
+ ### Bug Fixes
4
+
5
+ * removed TERM_PROGRAM check for vscode ([1070d11](https://github.com/anolilab/javascript-style-guide/commit/1070d119c332b63c7536e027e24f96fea669e737))
6
+
7
+ ## @anolilab/eslint-config [16.4.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@16.3.3...@anolilab/eslint-config@16.4.0) (2025-10-14)
8
+
9
+ ### Features
10
+
11
+ * enhance ESLint configuration with new rules and ignores ([3e1cb7b](https://github.com/anolilab/javascript-style-guide/commit/3e1cb7be01cf3377243cdebf6241bc25acc86754))
12
+
13
+ ### Miscellaneous Chores
14
+
15
+ * update ESLint configuration and dependencies ([52058a1](https://github.com/anolilab/javascript-style-guide/commit/52058a1f290734801dfd7d98743db2d351687541))
16
+
17
+ ### Code Refactoring
18
+
19
+ * improve ESLint and Prettier configurations ([db30fca](https://github.com/anolilab/javascript-style-guide/commit/db30fcafac696fe1b103293dc6f4a6dd0d72f51a))
20
+
1
21
  ## @anolilab/eslint-config [16.3.3](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/eslint-config@16.3.2...@anolilab/eslint-config@16.3.3) (2025-10-02)
2
22
 
3
23
  ### Bug Fixes
package/README.md CHANGED
@@ -158,7 +158,7 @@ For example:
158
158
  {
159
159
  "scripts": {
160
160
  "lint": "eslint .",
161
- "lint:fix": "eslint . --fix"
161
+ "lint:fix": "eslint . --cache --concurrency auto --fix"
162
162
  }
163
163
  }
164
164
  ```