@alexlit/config-eslint 72.5.0 → 72.5.2
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/index.js +11 -1
- package/package.json +2 -2
- package/plugins/typescript/index.js +1 -1
package/index.js
CHANGED
|
@@ -214,7 +214,17 @@ module.exports = defineConfig({
|
|
|
214
214
|
|
|
215
215
|
quotes: ['error', 'single'],
|
|
216
216
|
'require-await': 'off',
|
|
217
|
-
|
|
217
|
+
|
|
218
|
+
'sort-imports': [
|
|
219
|
+
'warn',
|
|
220
|
+
{
|
|
221
|
+
allowSeparatedGroups: true,
|
|
222
|
+
ignoreCase: true,
|
|
223
|
+
ignoreDeclarationSort: true,
|
|
224
|
+
ignoreMemberSort: false,
|
|
225
|
+
memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],
|
|
226
|
+
},
|
|
227
|
+
],
|
|
218
228
|
|
|
219
229
|
'sort-keys': [
|
|
220
230
|
'warn',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "72.5.
|
|
3
|
+
"version": "72.5.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Eslint config",
|
|
6
6
|
"keywords": [
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"eslint-plugin-lit": "^1.10.1",
|
|
56
56
|
"eslint-plugin-lit-a11y": "^4.1.1",
|
|
57
57
|
"eslint-plugin-more": "^1.0.5",
|
|
58
|
-
"eslint-plugin-no-await-in-promise": "^1.1.
|
|
58
|
+
"eslint-plugin-no-await-in-promise": "^1.1.6",
|
|
59
59
|
"eslint-plugin-no-constructor-bind": "^2.0.4",
|
|
60
60
|
"eslint-plugin-no-explicit-type-exports": "^0.12.1",
|
|
61
61
|
"eslint-plugin-no-loops": "^0.3.0",
|