@tofrankie/eslint 0.0.22 → 0.0.23

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,8 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## eslint@0.0.23 (2026-04-07)
4
+
5
+ - Fix `style/object-curly-spacing` rule name
6
+
3
7
  ## eslint@0.0.22 (2026-04-07)
4
8
 
5
9
  - Fix lessOpinionated preset detection logic
10
+ - Disable `unused-imports/no-unused-vars` rule, use `no-unused-vars` / `ts/no-unused-vars` instead
6
11
  - Update dependencies
7
12
 
8
13
  ## eslint@0.0.21 (2026-04-07)
package/dist/index.cjs CHANGED
@@ -188,7 +188,7 @@ const STYLISTIC_RULES = {
188
188
  "style/jsx-one-expression-per-line": "off",
189
189
  "style/jsx-wrap-multilines": "off",
190
190
  "style/multiline-ternary": "off",
191
- "object-curly-spacing": "off"
191
+ "style/object-curly-spacing": "off"
192
192
  };
193
193
  //#endregion
194
194
  //#region src/presets/test.ts
package/dist/index.mjs CHANGED
@@ -165,7 +165,7 @@ const STYLISTIC_RULES = {
165
165
  "style/jsx-one-expression-per-line": "off",
166
166
  "style/jsx-wrap-multilines": "off",
167
167
  "style/multiline-ternary": "off",
168
- "object-curly-spacing": "off"
168
+ "style/object-curly-spacing": "off"
169
169
  };
170
170
  //#endregion
171
171
  //#region src/presets/test.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tofrankie/eslint",
3
3
  "type": "module",
4
- "version": "0.0.22",
4
+ "version": "0.0.23",
5
5
  "description": "Shared ESLint configuration",
6
6
  "author": "Frankie <1426203851@qq.com>",
7
7
  "license": "MIT",