@egy186/eslint-config 0.105.3 → 0.105.5
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/dist/index.d.ts
CHANGED
|
@@ -248,7 +248,11 @@ declare const config: {
|
|
|
248
248
|
'import/export': "error";
|
|
249
249
|
'import/exports-last': "error";
|
|
250
250
|
'import/extensions': ["error", string, {
|
|
251
|
-
|
|
251
|
+
cts: string;
|
|
252
|
+
jsx: string;
|
|
253
|
+
mts: string;
|
|
254
|
+
ts: string;
|
|
255
|
+
tsx: string;
|
|
252
256
|
}];
|
|
253
257
|
'import/first': "error";
|
|
254
258
|
'import/group-exports': "error";
|
|
@@ -5,7 +5,11 @@ declare const rules: {
|
|
|
5
5
|
'import/export': "error";
|
|
6
6
|
'import/exports-last': "error";
|
|
7
7
|
'import/extensions': ["error", string, {
|
|
8
|
-
|
|
8
|
+
cts: string;
|
|
9
|
+
jsx: string;
|
|
10
|
+
mts: string;
|
|
11
|
+
ts: string;
|
|
12
|
+
tsx: string;
|
|
9
13
|
}];
|
|
10
14
|
'import/first': "error";
|
|
11
15
|
'import/group-exports': "error";
|
|
@@ -8,8 +8,14 @@ const rules = {
|
|
|
8
8
|
'import/exports-last': 'error',
|
|
9
9
|
'import/extensions': [
|
|
10
10
|
'error',
|
|
11
|
-
'
|
|
12
|
-
{
|
|
11
|
+
'ignorePackages',
|
|
12
|
+
{
|
|
13
|
+
cts: 'never',
|
|
14
|
+
jsx: 'never',
|
|
15
|
+
mts: 'never',
|
|
16
|
+
ts: 'never',
|
|
17
|
+
tsx: 'never'
|
|
18
|
+
}
|
|
13
19
|
],
|
|
14
20
|
'import/first': 'error',
|
|
15
21
|
'import/group-exports': 'error',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@egy186/eslint-config",
|
|
3
3
|
"description": "Eslint shareable config",
|
|
4
|
-
"version": "0.105.
|
|
4
|
+
"version": "0.105.5",
|
|
5
5
|
"author": "egy186",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/egy186/eslint-config/issues"
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@stylistic/eslint-plugin": "~1.5.1",
|
|
11
11
|
"eslint-plugin-import": "~2.29.1",
|
|
12
|
-
"eslint-plugin-jsdoc": "~
|
|
12
|
+
"eslint-plugin-jsdoc": "~48.0.2",
|
|
13
13
|
"eslint-plugin-n": "~16.6.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@eslint-stylistic/metadata": "~1.5.1",
|
|
17
17
|
"@types/eslint": "^8.56.0",
|
|
18
18
|
"@types/node": "^20.10.5",
|
|
19
|
-
"@typescript-eslint/eslint-plugin": "~6.
|
|
20
|
-
"@typescript-eslint/parser": "~6.
|
|
19
|
+
"@typescript-eslint/eslint-plugin": "~6.17.0",
|
|
20
|
+
"@typescript-eslint/parser": "~6.17.0",
|
|
21
21
|
"eslint": "~8.56.0",
|
|
22
22
|
"eslint-import-resolver-typescript": "~3.6.1",
|
|
23
23
|
"eslint-plugin-jest": "~27.6.0",
|