@alexlit/config-eslint 42.4.0 → 42.6.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/CHANGELOG.md +6 -0
- package/package.json +8 -8
- package/plugins/filenames.js +5 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# [42.6.0](https://github.com/alex-lit/config-eslint/compare/v42.5.1...v42.6.0) (2022-03-09)
|
|
2
|
+
|
|
3
|
+
## [42.5.1](https://github.com/alex-lit/config-eslint/compare/v42.5.0...v42.5.1) (2022-03-04)
|
|
4
|
+
|
|
5
|
+
# [42.5.0](https://github.com/alex-lit/config-eslint/compare/v42.4.0...v42.5.0) (2022-03-03)
|
|
6
|
+
|
|
1
7
|
# [42.4.0](https://github.com/alex-lit/config-eslint/compare/v42.3.0...v42.4.0) (2022-03-01)
|
|
2
8
|
|
|
3
9
|
# [42.3.0](https://github.com/alex-lit/config-eslint/compare/v42.2.0...v42.3.0) (2022-02-28)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "42.
|
|
3
|
+
"version": "42.6.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "eslint config",
|
|
6
6
|
"keywords": [
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"version": "./node_modules/@alexlit/lint-kit/scripts/version.sh"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@intlify/eslint-plugin-vue-i18n": "^1.
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
44
|
-
"@typescript-eslint/parser": "^5.
|
|
42
|
+
"@intlify/eslint-plugin-vue-i18n": "^1.4.0",
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
44
|
+
"@typescript-eslint/parser": "^5.14.0",
|
|
45
45
|
"eslint": "^8.10.0",
|
|
46
46
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
47
|
-
"eslint-config-prettier": "^8.
|
|
47
|
+
"eslint-config-prettier": "^8.5.0",
|
|
48
48
|
"eslint-define-config": "^1.2.5",
|
|
49
49
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
50
50
|
"eslint-plugin-array-func": "^3.1.7",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"eslint-plugin-jest": "^26.1.1",
|
|
59
59
|
"eslint-plugin-jest-dom": "^4.0.1",
|
|
60
60
|
"eslint-plugin-jest-formatting": "^3.1.0",
|
|
61
|
-
"eslint-plugin-jsdoc": "^37.9.
|
|
61
|
+
"eslint-plugin-jsdoc": "^37.9.7",
|
|
62
62
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
63
63
|
"eslint-plugin-lit": "^1.6.1",
|
|
64
64
|
"eslint-plugin-lit-a11y": "^2.2.0",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"eslint-plugin-prettier": "^4.0.0",
|
|
75
75
|
"eslint-plugin-promise": "^6.0.0",
|
|
76
76
|
"eslint-plugin-quasar": "^1.1.0",
|
|
77
|
-
"eslint-plugin-react": "^7.29.
|
|
77
|
+
"eslint-plugin-react": "^7.29.3",
|
|
78
78
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
79
79
|
"eslint-plugin-regexp": "^1.5.1",
|
|
80
80
|
"eslint-plugin-security": "^1.4.0",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"eslint-plugin-spellcheck": "^0.0.19",
|
|
87
87
|
"eslint-plugin-sql": "^2.1.0",
|
|
88
88
|
"eslint-plugin-svelte3": "^3.4.1",
|
|
89
|
-
"eslint-plugin-testing-library": "^5.0.
|
|
89
|
+
"eslint-plugin-testing-library": "^5.0.6",
|
|
90
90
|
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
91
91
|
"eslint-plugin-unicorn": "^41.0.0",
|
|
92
92
|
"eslint-plugin-unused-imports": "^2.0.0",
|
package/plugins/filenames.js
CHANGED
|
@@ -5,7 +5,11 @@
|
|
|
5
5
|
module.exports = {
|
|
6
6
|
overrides: [
|
|
7
7
|
{
|
|
8
|
-
files: [
|
|
8
|
+
files: [
|
|
9
|
+
'**/.*.*',
|
|
10
|
+
'**/pages/**/{0,1,2,3,4,5,6,7,8,9}*.vue',
|
|
11
|
+
'**/pages/index.vue',
|
|
12
|
+
],
|
|
9
13
|
|
|
10
14
|
rules: {
|
|
11
15
|
'filenames/match-exported': 'off',
|
|
@@ -25,20 +29,6 @@ module.exports = {
|
|
|
25
29
|
'filenames/match-exported': ['error', 'kebab', /^_/],
|
|
26
30
|
},
|
|
27
31
|
},
|
|
28
|
-
{
|
|
29
|
-
files: ['**/pages/index.vue'],
|
|
30
|
-
|
|
31
|
-
rules: {
|
|
32
|
-
'filenames/match-exported': 'off',
|
|
33
|
-
},
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
files: ['**/pages/**/{0,1,2,3,4,5,6,7,8,9}*.vue'],
|
|
37
|
-
|
|
38
|
-
rules: {
|
|
39
|
-
'filenames/match-exported': 'off',
|
|
40
|
-
},
|
|
41
|
-
},
|
|
42
32
|
],
|
|
43
33
|
|
|
44
34
|
plugins: ['filenames'],
|