@dmitryrechkin/eslint-standard 1.4.3 → 1.4.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/eslint.config.mjs +1 -4
- package/package.json +10 -27
package/eslint.config.mjs
CHANGED
|
@@ -551,10 +551,7 @@ export default function ({
|
|
|
551
551
|
devDependencies: ['**/*.test.{js,jsx,ts,tsx}', '**/*.spec.{js,jsx,ts,tsx}', '**/test/**', '**/tests/**', '**/__tests__/**']
|
|
552
552
|
}],
|
|
553
553
|
'import/no-mutable-exports': 'error',
|
|
554
|
-
'import/no-unused-modules':
|
|
555
|
-
missingExports: true, // Find files with no exports
|
|
556
|
-
unusedExports: true // Find unused exports
|
|
557
|
-
}],
|
|
554
|
+
// 'import/no-unused-modules': 'off', // Disabled - incompatible with flat config, requires legacy .eslintrc
|
|
558
555
|
'import/unambiguous': 'off',
|
|
559
556
|
'import/no-commonjs': 'off',
|
|
560
557
|
'import/no-amd': 'error',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dmitryrechkin/eslint-standard",
|
|
3
3
|
"description": "This package provides a shared ESLint configuration which includes TypeScript support and a set of specific linting rules designed to ensure high-quality and consistent code style across projects.",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.5",
|
|
5
5
|
"main": "eslint.config.mjs",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./eslint.config.mjs"
|
|
@@ -35,35 +35,10 @@
|
|
|
35
35
|
"keywords": [],
|
|
36
36
|
"author": "",
|
|
37
37
|
"license": "MIT",
|
|
38
|
-
"
|
|
39
|
-
"@stylistic/eslint-plugin": "^5.0.0",
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
41
|
-
"@typescript-eslint/parser": "^8.0.0",
|
|
42
|
-
"eslint": "^9.0.0",
|
|
43
|
-
"eslint-config-prettier": "^10.0.0",
|
|
44
|
-
"eslint-plugin-functional": "^7.0.0",
|
|
45
|
-
"eslint-plugin-import": "^2.0.0",
|
|
46
|
-
"eslint-import-resolver-typescript": "^3.0.0",
|
|
47
|
-
"eslint-plugin-jsdoc": "^50.0.0",
|
|
48
|
-
"eslint-plugin-jsx-a11y": "^6.0.0",
|
|
49
|
-
"eslint-plugin-no-secrets": "^1.0.0",
|
|
50
|
-
"eslint-plugin-perfectionist": "^4.0.0",
|
|
51
|
-
"eslint-plugin-prettier": "^5.0.0",
|
|
52
|
-
"eslint-plugin-promise": "^7.0.0",
|
|
53
|
-
"eslint-plugin-regexp": "^2.0.0",
|
|
54
|
-
"eslint-plugin-security": "^3.0.0",
|
|
55
|
-
"eslint-plugin-simple-import-sort": "^12.0.0",
|
|
56
|
-
"eslint-plugin-sonarjs": "^3.0.0",
|
|
57
|
-
"eslint-plugin-unicorn": "^56.0.0",
|
|
58
|
-
"eslint-plugin-unused-imports": "^4.0.0",
|
|
59
|
-
"prettier-plugin-astro": "^0.14.0",
|
|
60
|
-
"prettier-plugin-brace-style": "^0.8.0"
|
|
61
|
-
},
|
|
62
|
-
"devDependencies": {
|
|
38
|
+
"dependencies": {
|
|
63
39
|
"@stylistic/eslint-plugin": "^5.2.2",
|
|
64
40
|
"@typescript-eslint/eslint-plugin": "^8.38.0",
|
|
65
41
|
"@typescript-eslint/parser": "^8.38.0",
|
|
66
|
-
"eslint": "^9.32.0",
|
|
67
42
|
"eslint-config-prettier": "^10.1.8",
|
|
68
43
|
"eslint-plugin-functional": "^7.3.0",
|
|
69
44
|
"eslint-plugin-import": "^2.32.0",
|
|
@@ -82,5 +57,13 @@
|
|
|
82
57
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
83
58
|
"prettier-plugin-astro": "^0.14.1",
|
|
84
59
|
"prettier-plugin-brace-style": "^0.8.1"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"eslint": "^9.0.0",
|
|
63
|
+
"prettier": "^3.0.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"eslint": "^9.32.0",
|
|
67
|
+
"prettier": "^3.6.2"
|
|
85
68
|
}
|
|
86
69
|
}
|