@ithinkdt/lint 4.1.5 → 4.2.0-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/package.json +14 -14
  2. package/src/base.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ithinkdt/lint",
3
- "version": "4.1.5",
3
+ "version": "4.2.0-0",
4
4
  "type": "module",
5
5
  "description": "iThinkDT 项目的 ESLint、StyleLint 配置",
6
6
  "keywords": [
@@ -34,33 +34,33 @@
34
34
  "dependencies": {
35
35
  "@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
36
36
  "@eslint/js": "^10.0.1",
37
- "@eslint/json": ">=2.0.0",
38
- "@eslint/markdown": "^8.0.2",
37
+ "@eslint/json": ">=2.0.1",
38
+ "@eslint/markdown": "^8.0.3",
39
39
  "@stylistic/eslint-plugin": "^5.10.0",
40
- "@typescript-eslint/parser": "^8.62.0",
41
- "@unocss/eslint-config": "^66.7.2",
42
- "@vitest/eslint-plugin": "^1.6.20",
43
- "@vue/compiler-sfc": "^3.5.38",
40
+ "@typescript-eslint/parser": "^8.63.0",
41
+ "@unocss/eslint-config": "^66.7.5",
42
+ "@vitest/eslint-plugin": "^1.6.22",
43
+ "@vue/compiler-sfc": "^3.5.39",
44
44
  "eslint-flat-config-utils": "^3.2.0",
45
45
  "eslint-import-resolver-custom-alias": "^1.3.2",
46
46
  "eslint-import-resolver-typescript": "^4.4.5",
47
47
  "eslint-merge-processors": "^2.0.0",
48
48
  "eslint-plugin-format": "^2.0.1",
49
- "eslint-plugin-import": "npm:eslint-plugin-import-x@^4.17.0",
49
+ "eslint-plugin-import": "npm:eslint-plugin-import-x@^4.17.1",
50
50
  "eslint-plugin-no-only-tests": "^3.4.0",
51
- "eslint-plugin-playwright": "^2.10.4",
51
+ "eslint-plugin-playwright": "^2.10.5",
52
52
  "eslint-plugin-tsdoc": ">=0.5.2",
53
- "eslint-plugin-unicorn": "^68.0.0",
53
+ "eslint-plugin-unicorn": "^71.1.0",
54
54
  "eslint-plugin-vue": "^10.9.2",
55
55
  "eslint-processor-vue-blocks": "^2.0.0",
56
56
  "globals": "^17.7.0",
57
- "globby": "^16.2.0",
57
+ "globby": "^16.2.1",
58
58
  "is-glob": "^4.0.3",
59
59
  "postcss-html": "^1.8.1",
60
60
  "stylelint-config-standard": "^40.0.0",
61
61
  "stylelint-config-standard-vue": "^1.0.0",
62
62
  "stylelint-order": "^8.1.1",
63
- "typescript-eslint": "^8.62.0",
63
+ "typescript-eslint": "^8.63.0",
64
64
  "vue-eslint-parser": "^10.4.1"
65
65
  },
66
66
  "peerDependencies": {
@@ -69,8 +69,8 @@
69
69
  "typescript": ">=5.8"
70
70
  },
71
71
  "devDependencies": {
72
- "eslint": "^10.5.0",
73
- "stylelint": "~17.13.0",
72
+ "eslint": "^10.6.0",
73
+ "stylelint": "~17.14.0",
74
74
  "typescript": "~6.0.3"
75
75
  },
76
76
  "license": "MIT",
package/src/base.js CHANGED
@@ -233,6 +233,8 @@ export function base({ stylistic: stylisticOptions, inCI }) {
233
233
 
234
234
  'unicorn/prefer-at': 'off',
235
235
 
236
+ 'unicorn/no-array-callback-reference': 'off',
237
+
236
238
  // vue 中 this 会误报
237
239
  'unicorn/no-this-outside-of-class': 'off',
238
240