@signpostmarv/eslint-config 0.7.0 → 0.8.1
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.d.ts +2 -2
- package/index.js +3 -2
- package/javascript.js +12 -9
- package/package.json +10 -12
- package/typescript.js +1 -1
package/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { typescript } from './typescript.
|
|
2
|
-
import { javascript } from './javascript.
|
|
1
|
+
import { typescript } from './typescript.ts';
|
|
2
|
+
import { javascript } from './javascript.ts';
|
|
3
3
|
export { typescript, javascript, };
|
package/index.js
CHANGED
package/javascript.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import js from '@eslint/js';
|
|
2
|
-
// eslint-disable-next-line imports/no-unresolved
|
|
3
2
|
import typescript_eslint from 'typescript-eslint';
|
|
4
3
|
import stylistic from '@stylistic/eslint-plugin';
|
|
5
|
-
import imports from 'eslint-plugin-import';
|
|
6
4
|
const javascript = [
|
|
7
5
|
js.configs.recommended,
|
|
8
6
|
...typescript_eslint.configs.recommended,
|
|
9
7
|
{
|
|
10
8
|
plugins: {
|
|
11
9
|
'@stylistic': stylistic,
|
|
10
|
+
/*
|
|
12
11
|
imports,
|
|
12
|
+
*/
|
|
13
13
|
},
|
|
14
14
|
rules: {
|
|
15
15
|
'@typescript-eslint/member-ordering': ['error', {
|
|
@@ -207,6 +207,7 @@ const javascript = [
|
|
|
207
207
|
'@stylistic/type-named-tuple-spacing': ['error'],
|
|
208
208
|
'@stylistic/wrap-iife': ['error', 'inside'],
|
|
209
209
|
'@stylistic/yield-star-spacing': ['error', 'after'],
|
|
210
|
+
/*
|
|
210
211
|
'imports/export': ['error'],
|
|
211
212
|
'imports/no-deprecated': ['error'],
|
|
212
213
|
'imports/no-empty-named-blocks': ['error'],
|
|
@@ -246,13 +247,14 @@ const javascript = [
|
|
|
246
247
|
'imports/no-namespace': ['error'],
|
|
247
248
|
'imports/no-unassigned-import': ['error'],
|
|
248
249
|
'imports/order': ['error', {
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
250
|
+
groups: [
|
|
251
|
+
'builtin',
|
|
252
|
+
'external',
|
|
253
|
+
'sibling',
|
|
254
|
+
'parent',
|
|
255
|
+
],
|
|
256
|
+
}],
|
|
257
|
+
*/
|
|
256
258
|
},
|
|
257
259
|
},
|
|
258
260
|
{
|
|
@@ -260,3 +262,4 @@ const javascript = [
|
|
|
260
262
|
},
|
|
261
263
|
];
|
|
262
264
|
export { javascript, };
|
|
265
|
+
//# sourceMappingURL=javascript.js.map
|
package/package.json
CHANGED
|
@@ -11,26 +11,24 @@
|
|
|
11
11
|
"exports": "./index.js",
|
|
12
12
|
"types": "./index.d.ts",
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@eslint/js": "
|
|
15
|
-
"@stylistic/eslint-plugin": "5.
|
|
14
|
+
"@eslint/js": "10.0.1",
|
|
15
|
+
"@stylistic/eslint-plugin": "5.9.0",
|
|
16
16
|
"@types/eslint": "9.6.1",
|
|
17
|
-
"@types/node": "^
|
|
18
|
-
"@typescript-eslint/parser": "^8.
|
|
19
|
-
"c8": "^10.1.3",
|
|
17
|
+
"@types/node": "^25.2.3",
|
|
18
|
+
"@typescript-eslint/parser": "^8.56.0",
|
|
20
19
|
"jiti": "^2.6.0",
|
|
21
20
|
"prettier": "^3.6.2",
|
|
22
21
|
"typescript": "~5.9.2",
|
|
23
|
-
"typescript-eslint": "8.
|
|
22
|
+
"typescript-eslint": "8.56.0"
|
|
24
23
|
},
|
|
25
24
|
"peerDependencies": {
|
|
26
|
-
"@eslint/js": "^
|
|
27
|
-
"@stylistic/eslint-plugin": "^5.
|
|
25
|
+
"@eslint/js": "^10.0.1",
|
|
26
|
+
"@stylistic/eslint-plugin": "^5.9.0",
|
|
28
27
|
"@types/eslint": "^9.6.1",
|
|
29
|
-
"eslint
|
|
30
|
-
"typescript-eslint": "^8.54.0"
|
|
28
|
+
"typescript-eslint": "^8.56.0"
|
|
31
29
|
},
|
|
32
30
|
"optionalDependencies": {
|
|
33
|
-
"@typescript-eslint/parser": "^8.
|
|
31
|
+
"@typescript-eslint/parser": "^8.56.0"
|
|
34
32
|
},
|
|
35
|
-
"version": "0.
|
|
33
|
+
"version": "0.8.1"
|
|
36
34
|
}
|
package/typescript.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
// eslint-disable-next-line imports/no-unresolved
|
|
2
1
|
import typescript_eslint from 'typescript-eslint';
|
|
3
2
|
import { javascript, } from './javascript.js';
|
|
4
3
|
const typescript = [
|
|
@@ -14,3 +13,4 @@ const typescript = [
|
|
|
14
13
|
},
|
|
15
14
|
];
|
|
16
15
|
export { typescript, };
|
|
16
|
+
//# sourceMappingURL=typescript.js.map
|