@kikiutils/eslint-config 0.7.3 → 0.8.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.
Files changed (2) hide show
  1. package/dist/index.mjs +6 -0
  2. package/package.json +13 -8
package/dist/index.mjs CHANGED
@@ -209,6 +209,10 @@ function createConfig(environment = 'node', options) {
209
209
  'tailwindcss/enforces-negative-arbitrary-values': 'error',
210
210
  'tailwindcss/enforces-shorthand': 'error',
211
211
  'tailwindcss/no-unnecessary-arbitrary-value': 'error',
212
+ 'vue/attributes-order': [
213
+ 'error',
214
+ { alphabetical: true },
215
+ ],
212
216
  'vue/block-order': [
213
217
  'error',
214
218
  {
@@ -238,6 +242,8 @@ function createConfig(environment = 'node', options) {
238
242
  },
239
243
  ],
240
244
  'vue/no-multi-spaces': 'error',
245
+ 'vue/no-multiple-objects-in-class': 'error',
246
+ 'vue/prefer-separate-static-class': 'error',
241
247
  },
242
248
  }, {
243
249
  files: ['**/.vscode/*.json'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kikiutils/eslint-config",
3
- "version": "0.7.3",
3
+ "version": "0.8.0",
4
4
  "description": "Using antfu/eslint-config as a base for eslint-config, slightly modified the settings and added additional plugins, mainly for my own use.",
5
5
  "author": "kiki-kanri",
6
6
  "license": "MIT",
@@ -31,16 +31,21 @@
31
31
  "release": "pnpm run lint && pnpm run build && changelogen --push --release && npm publish"
32
32
  },
33
33
  "dependencies": {
34
- "@antfu/eslint-config": "^3.12.0",
35
- "eslint": "^9.17.0",
36
- "eslint-plugin-tailwindcss": "^3.17.5"
34
+ "@antfu/eslint-config": "^4.4.0",
35
+ "@kikiutils/eslint-plugin-tailwindcss": "^1.0.0",
36
+ "eslint": "^9.21.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@kikiutils/changelogen": "^0.7.0",
39
+ "@kikiutils/changelogen": "^0.7.1",
40
40
  "@kikiutils/tsconfigs": "^3.0.2",
41
- "esbuild": "^0.24.0",
42
- "eslint-flat-config-utils": "^0.4.0",
41
+ "esbuild": "^0.25.0",
42
+ "eslint-flat-config-utils": "^2.0.1",
43
43
  "nodemon": "^3.1.9",
44
- "ts-project-builder": "^3.3.3"
44
+ "ts-project-builder": "^3.4.0"
45
+ },
46
+ "pnpm": {
47
+ "onlyBuiltDependencies": [
48
+ "esbuild"
49
+ ]
45
50
  }
46
51
  }