@frontify/eslint-config-basic 0.19.0-next.1 → 0.19.0-next.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 +5 -1
- package/package.json +6 -6
package/index.js
CHANGED
|
@@ -88,7 +88,7 @@ module.exports = {
|
|
|
88
88
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
|
|
89
89
|
'@typescript-eslint/consistent-type-imports': [
|
|
90
90
|
'warn',
|
|
91
|
-
{ prefer: 'type-imports', fixStyle: '
|
|
91
|
+
{ prefer: 'type-imports', fixStyle: 'inline-type-imports' },
|
|
92
92
|
],
|
|
93
93
|
'@typescript-eslint/no-misused-promises': [2, { checksVoidReturn: { attributes: false } }],
|
|
94
94
|
},
|
|
@@ -350,6 +350,10 @@ module.exports = {
|
|
|
350
350
|
{
|
|
351
351
|
groups: ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object', 'type'],
|
|
352
352
|
'newlines-between': 'always',
|
|
353
|
+
alphabetize: {
|
|
354
|
+
order: 'asc',
|
|
355
|
+
caseInsensitive: false,
|
|
356
|
+
},
|
|
353
357
|
},
|
|
354
358
|
],
|
|
355
359
|
'import/prefer-default-export': 'off',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontify/eslint-config-basic",
|
|
3
|
-
"version": "0.19.0-next.
|
|
3
|
+
"version": "0.19.0-next.2",
|
|
4
4
|
"author": "Frontify Developers <developers@frontify.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"prettier": ">=3.0.0"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
24
|
-
"@typescript-eslint/parser": "^6.
|
|
25
|
-
"eslint-config-prettier": "^9.
|
|
23
|
+
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
|
24
|
+
"@typescript-eslint/parser": "^6.13.2",
|
|
25
|
+
"eslint-config-prettier": "^9.1.0",
|
|
26
26
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
27
27
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
28
28
|
"eslint-plugin-import": "^2.29.0",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"yaml-eslint-parser": "^1.2.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"eslint": "^8.
|
|
41
|
-
"prettier": "^3.
|
|
40
|
+
"eslint": "^8.55.0",
|
|
41
|
+
"prettier": "^3.1.1"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"lint": "eslint . --config=index.js"
|