@alexlit/config-eslint 154.1.0 → 154.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/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ ## v154.1.1
5
+
6
+ [compare changes](https://github.com/alex-lit/lint-kit/compare/@alexlit/config-eslint@154.1.0...v154.1.1)
7
+
8
+ ### 🏡 Chore
9
+
10
+ - **@alexlit/lint-kit:** Bump version ([50a19e17](https://github.com/alex-lit/lint-kit/commit/50a19e17))
11
+
12
+ ### ❤️ Contributors
13
+
14
+ - Alexey Litovchenko ([@alex-lit](https://github.com/alex-lit))
15
+
4
16
  ## v154.1.0
5
17
 
6
18
  [compare changes](https://github.com/alex-lit/lint-kit/compare/@alexlit/config-eslint@154.0.1...v154.1.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "154.1.0",
3
+ "version": "154.1.1",
4
4
  "private": false,
5
5
  "description": "Sharable ESLint configuration",
6
6
  "keywords": [
@@ -52,7 +52,7 @@ export const javascript = defineConfig([
52
52
  },
53
53
  // Устаревший функционал
54
54
  {
55
- message: 'Это функционал устарел.',
55
+ message: 'Этот функционал устарел.',
56
56
  regex: '(_deprecated|_legacy)',
57
57
  },
58
58
  ],
@@ -22,43 +22,37 @@ export const perfectionist = defineConfig([
22
22
  { elementNamePattern: ['^#shared*'], groupName: 'shared' },
23
23
 
24
24
  // universal
25
- { elementNamePattern: ['^~/.*/api'], groupName: 'universal-api' },
25
+ { elementNamePattern: ['^@/api'], groupName: 'universal-api' },
26
26
  {
27
- elementNamePattern: ['^~/.*/assets'],
27
+ elementNamePattern: ['^@/assets'],
28
28
  groupName: 'universal-assets',
29
29
  },
30
30
  {
31
- elementNamePattern: ['^~/.*/components'],
31
+ elementNamePattern: ['^@/components'],
32
32
  groupName: 'universal-components',
33
33
  },
34
34
  {
35
- elementNamePattern: ['^~/.*/composables'],
35
+ elementNamePattern: ['^@/composables'],
36
36
  groupName: 'universal-composables',
37
37
  },
38
38
  {
39
- elementNamePattern: ['^~/.*/constants'],
39
+ elementNamePattern: ['^@/constants'],
40
40
  groupName: 'universal-constants',
41
41
  },
42
42
  {
43
- elementNamePattern: ['^~/.*/directives'],
43
+ elementNamePattern: ['^@/directives'],
44
44
  groupName: 'universal-directives',
45
45
  },
46
+ { elementNamePattern: ['^@/pages'], groupName: 'universal-pages' },
46
47
  {
47
- elementNamePattern: ['^~/.*/pages'],
48
- groupName: 'universal-pages',
49
- },
50
- {
51
- elementNamePattern: ['^~/.*/plugins'],
48
+ elementNamePattern: ['^@/plugins'],
52
49
  groupName: 'universal-plugins',
53
50
  },
54
51
  {
55
- elementNamePattern: ['^~/.*/stores'],
52
+ elementNamePattern: ['^@/stores'],
56
53
  groupName: 'universal-stores',
57
54
  },
58
- {
59
- elementNamePattern: ['^~/.*/utils'],
60
- groupName: 'universal-utils',
61
- },
55
+ { elementNamePattern: ['^@/utils'], groupName: 'universal-utils' },
62
56
  ],
63
57
  groups: [
64
58
  'type-import',