@alexlit/config-eslint 136.1.1 → 136.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "136.1.1",
3
+ "version": "136.2.0",
4
4
  "private": false,
5
5
  "description": "Sharable ESLint configuration",
6
6
  "keywords": [
@@ -41,10 +41,10 @@
41
41
  "dependencies": {
42
42
  "@eslint/js": "^10.0.1",
43
43
  "@eslint/json": "^1.0.1",
44
- "@intlify/eslint-plugin-vue-i18n": "^4.2.0",
44
+ "@intlify/eslint-plugin-vue-i18n": "^4.3.0",
45
45
  "@stylistic/eslint-plugin": "^5.9.0",
46
46
  "@tanstack/eslint-plugin-query": "^5.91.4",
47
- "@unocss/eslint-config": "^66.6.0",
47
+ "@unocss/eslint-config": "^66.6.2",
48
48
  "@vitest/eslint-plugin": "^1.6.9",
49
49
  "eslint": "^10.0.2",
50
50
  "eslint-config-prettier": "^10.1.8",
@@ -57,7 +57,7 @@
57
57
  "eslint-plugin-unicorn": "^63.0.0",
58
58
  "eslint-plugin-vue": "^10.8.0",
59
59
  "eslint-plugin-vuejs-accessibility": "^2.5.0",
60
- "globals": "^17.3.0",
60
+ "globals": "^17.4.0",
61
61
  "jsonc-eslint-parser": "^3.1.0",
62
62
  "typescript": "^5.9.3",
63
63
  "typescript-eslint": "^8.56.1",
package/plugins/unocss.js CHANGED
@@ -1,12 +1,10 @@
1
- // import plugin from '@unocss/eslint-config/flat';
1
+ import plugin from '@unocss/eslint-config/flat';
2
2
  import { defineConfig } from 'eslint/config';
3
3
 
4
- // import { FILES } from '../presets/base.js';
5
-
6
- // TODO: update plugin
4
+ import { FILES } from '../presets/base.js';
7
5
 
8
6
  /** @see [@unocss/eslint-config](https://unocss.dev/integrations/eslint) */
9
7
  export const unocss = defineConfig([
10
- // { files: FILES, ...plugin },
11
- // { files: FILES, rules: { 'unocss/order-attributify': 'off' } },
8
+ { files: FILES, ...plugin },
9
+ { files: FILES, rules: { 'unocss/order-attributify': 'off' } },
12
10
  ]);