@alexlit/config-eslint 41.5.0 → 41.6.3
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 +8 -0
- package/dictionaries/default.js +1 -0
- package/package.json +2 -2
- package/plugins/typescript/index.js +7 -0
- package/plugins/vue.js +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [41.6.3](https://github.com/alex-lit/config-eslint/compare/v41.6.2...v41.6.3) (2022-01-28)
|
|
2
|
+
|
|
3
|
+
## [41.6.2](https://github.com/alex-lit/config-eslint/compare/v41.6.1...v41.6.2) (2022-01-28)
|
|
4
|
+
|
|
5
|
+
## [41.6.1](https://github.com/alex-lit/config-eslint/compare/v41.6.0...v41.6.1) (2022-01-28)
|
|
6
|
+
|
|
7
|
+
# [41.6.0](https://github.com/alex-lit/config-eslint/compare/v41.5.0...v41.6.0) (2022-01-28)
|
|
8
|
+
|
|
1
9
|
# [41.5.0](https://github.com/alex-lit/config-eslint/compare/v41.4.0...v41.5.0) (2022-01-26)
|
|
2
10
|
|
|
3
11
|
# [41.4.0](https://github.com/alex-lit/config-eslint/compare/v41.3.2...v41.4.0) (2022-01-25)
|
package/dictionaries/default.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "41.
|
|
3
|
+
"version": "41.6.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "eslint config",
|
|
6
6
|
"keywords": [
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"eslint-plugin-typescript-sort-keys": "^2.1.0",
|
|
91
91
|
"eslint-plugin-unicorn": "^40.1.0",
|
|
92
92
|
"eslint-plugin-unused-imports": "^2.0.0",
|
|
93
|
-
"eslint-plugin-vue": "^8.
|
|
93
|
+
"eslint-plugin-vue": "^8.4.0",
|
|
94
94
|
"eslint-plugin-vuejs-accessibility": "^1.1.1",
|
|
95
95
|
"eslint-plugin-vuetify": "^1.1.0",
|
|
96
96
|
"eslint-plugin-wc": "^1.3.2",
|
|
@@ -16,6 +16,13 @@ module.exports = {
|
|
|
16
16
|
'@typescript-eslint/naming-convention': 'off',
|
|
17
17
|
},
|
|
18
18
|
},
|
|
19
|
+
{
|
|
20
|
+
files: ['**/store/**/*', '**/vuex/**/*', '**/pinia/**/*'],
|
|
21
|
+
|
|
22
|
+
rules: {
|
|
23
|
+
'@typescript-eslint/no-shadow': 'off',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
19
26
|
],
|
|
20
27
|
|
|
21
28
|
plugins: ['@typescript-eslint'],
|
package/plugins/vue.js
CHANGED
|
@@ -128,7 +128,7 @@ module.exports = {
|
|
|
128
128
|
|
|
129
129
|
'vue/no-unused-components': ['error'],
|
|
130
130
|
|
|
131
|
-
'vue/no-unused-refs':
|
|
131
|
+
'vue/no-unused-refs': 'off',
|
|
132
132
|
|
|
133
133
|
'vue/no-use-computed-property-like-method': ['error'],
|
|
134
134
|
|
|
@@ -142,10 +142,16 @@ module.exports = {
|
|
|
142
142
|
|
|
143
143
|
'vue/no-v-text': ['error'],
|
|
144
144
|
|
|
145
|
+
'vue/no-v-text-v-html-on-component': ['error'],
|
|
146
|
+
|
|
147
|
+
'vue/object-shorthand': ['error'],
|
|
148
|
+
|
|
145
149
|
'vue/padding-line-between-blocks': ['error'],
|
|
146
150
|
|
|
147
151
|
'vue/prefer-separate-static-class': ['error'],
|
|
148
152
|
|
|
153
|
+
'vue/quote-props': ['error', 'as-needed'],
|
|
154
|
+
|
|
149
155
|
'vue/require-direct-export': 'off',
|
|
150
156
|
|
|
151
157
|
'vue/sort-keys': [
|