@alexlit/config-eslint 81.0.0 → 81.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "81.0.0",
3
+ "version": "81.1.1",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
@@ -38,8 +38,8 @@
38
38
  "dependencies": {
39
39
  "@intlify/eslint-plugin-vue-i18n": "^2.0.0",
40
40
  "@tanstack/eslint-plugin-query": "^5.28.11",
41
- "@typescript-eslint/eslint-plugin": "^7.6.0",
42
- "@typescript-eslint/parser": "^7.6.0",
41
+ "@typescript-eslint/eslint-plugin": "^7.7.0",
42
+ "@typescript-eslint/parser": "^7.7.0",
43
43
  "eslint": "^8.57.0",
44
44
  "eslint-config-airbnb-base": "^15.0.0",
45
45
  "eslint-config-prettier": "^9.1.0",
@@ -69,24 +69,27 @@
69
69
  "eslint-plugin-promise": "^6.1.1",
70
70
  "eslint-plugin-regexp": "^2.5.0",
71
71
  "eslint-plugin-security": "^3.0.0",
72
- "eslint-plugin-simple-import-sort": "^12.0.0",
72
+ "eslint-plugin-simple-import-sort": "^12.1.0",
73
73
  "eslint-plugin-sonarjs": "^0.25.1",
74
74
  "eslint-plugin-sort-class-members": "^1.20.0",
75
75
  "eslint-plugin-sort-destructure-keys": "^1.5.0",
76
76
  "eslint-plugin-sort-keys-fix": "^1.1.2",
77
77
  "eslint-plugin-spellcheck": "^0.0.20",
78
78
  "eslint-plugin-sql": "^2.5.0",
79
- "eslint-plugin-testing-library": "^6.2.0",
79
+ "eslint-plugin-testing-library": "^6.2.2",
80
80
  "eslint-plugin-typescript-sort-keys": "^3.2.0",
81
81
  "eslint-plugin-unicorn": "^52.0.0",
82
82
  "eslint-plugin-unused-imports": "^3.1.0",
83
83
  "eslint-plugin-vitest": "^0.4.1",
84
- "eslint-plugin-vue": "^9.24.1",
84
+ "eslint-plugin-vue": "^9.25.0",
85
85
  "eslint-plugin-vuejs-accessibility": "^2.2.1",
86
86
  "eslint-plugin-wc": "^2.1.0",
87
87
  "eslint-plugin-write-good-comments": "^0.2.0",
88
88
  "typescript": "^5.4.5"
89
89
  },
90
+ "engines": {
91
+ "node": ">=18"
92
+ },
90
93
  "overrides": {
91
94
  "eslint": "^8.57.0",
92
95
  "eslint-plugin-array-func": "^4.0.0",
package/plugins/import.js CHANGED
@@ -57,8 +57,10 @@ module.exports = {
57
57
  'newlines-between': 'always',
58
58
 
59
59
  pathGroups: [
60
- { group: 'internal', pattern: '{@,~}/core/**', position: 'after' },
61
- { group: 'internal', pattern: '{@,~}/modules/**', position: 'after' },
60
+ // Nuxt
61
+ { group: 'internal', pattern: '#**', position: 'after' },
62
+ // Structure
63
+ { group: 'internal', pattern: '{@,~}/**', position: 'after' },esl
62
64
  // FSD
63
65
  {
64
66
  group: 'internal',