eslint-plugin-etc-misc 1.0.6 → 1.0.8
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/README.md +1 -1
- package/dist/_internal/rule-creator.d.ts.map +1 -1
- package/dist/_internal/rule-creator.js +0 -2
- package/dist/_internal/rule-creator.js.map +1 -1
- package/dist/_internal/syntax-selectors.d.ts.map +1 -1
- package/dist/_internal/syntax-selectors.js +0 -1
- package/dist/_internal/syntax-selectors.js.map +1 -1
- package/dist/plugin.cjs +8864 -3
- package/dist/plugin.cjs.map +7 -0
- package/dist/plugin.d.cts +15 -2
- package/dist/rules/consistent-enum-members.d.ts.map +1 -1
- package/dist/rules/consistent-enum-members.js +0 -1
- package/dist/rules/consistent-enum-members.js.map +1 -1
- package/dist/rules/consistent-symbol-description.d.ts.map +1 -1
- package/dist/rules/consistent-symbol-description.js +0 -1
- package/dist/rules/consistent-symbol-description.js.map +1 -1
- package/dist/rules/no-language-mixing.d.ts.map +1 -1
- package/dist/rules/no-language-mixing.js +0 -1
- package/dist/rules/no-language-mixing.js.map +1 -1
- package/dist/rules/no-misused-generics.d.ts.map +1 -1
- package/dist/rules/no-misused-generics.js +31 -25
- package/dist/rules/no-misused-generics.js.map +1 -1
- package/dist/rules/restrict-identifier-characters.d.ts.map +1 -1
- package/dist/rules/restrict-identifier-characters.js +0 -1
- package/dist/rules/restrict-identifier-characters.js.map +1 -1
- package/dist/rules/typescript-class-methods-use-this.d.ts.map +1 -1
- package/dist/rules/typescript-class-methods-use-this.js +27 -22
- package/dist/rules/typescript-class-methods-use-this.js.map +1 -1
- package/dist/rules/typescript-consistent-array-type-name.d.ts.map +1 -1
- package/dist/rules/typescript-consistent-array-type-name.js +0 -1
- package/dist/rules/typescript-consistent-array-type-name.js.map +1 -1
- package/dist/rules/typescript-prefer-array-type-alias.d.ts.map +1 -1
- package/dist/rules/typescript-prefer-array-type-alias.js +0 -1
- package/dist/rules/typescript-prefer-array-type-alias.js.map +1 -1
- package/dist/rules/typescript-prefer-enum.d.ts.map +1 -1
- package/dist/rules/typescript-prefer-enum.js +7 -5
- package/dist/rules/typescript-prefer-enum.js.map +1 -1
- package/dist/rules/words.js +4 -4
- package/dist/rules/words.js.map +1 -1
- package/dist/rules.d.ts.map +1 -1
- package/dist/rules.js +1 -3
- package/dist/rules.js.map +1 -1
- package/docs/docusaurus/docusaurus.config.ts +8 -8
- package/docs/docusaurus/package.json +16 -16
- package/docs/docusaurus/sidebars.rules.ts +2 -2
- package/docs/docusaurus/sidebars.ts +2 -2
- package/docs/docusaurus/src/components/GitHubStats.jsx +1 -1
- package/docs/docusaurus/src/components/GitHubStats.module.css +46 -0
- package/docs/docusaurus/src/css/custom.css +0 -1
- package/docs/docusaurus/src/pages/index.module.css +0 -1
- package/docs/rules/words.md +2 -2
- package/package.json +82 -70
|
@@ -63,33 +63,33 @@
|
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@docusaurus/core": "^3.
|
|
67
|
-
"@docusaurus/faster": "^3.
|
|
68
|
-
"@docusaurus/plugin-content-docs": "^3.
|
|
69
|
-
"@docusaurus/plugin-pwa": "^3.
|
|
70
|
-
"@docusaurus/preset-classic": "^3.
|
|
71
|
-
"@docusaurus/theme-mermaid": "^3.
|
|
72
|
-
"@docusaurus/types": "^3.
|
|
66
|
+
"@docusaurus/core": "^3.10.0",
|
|
67
|
+
"@docusaurus/faster": "^3.10.0",
|
|
68
|
+
"@docusaurus/plugin-content-docs": "^3.10.0",
|
|
69
|
+
"@docusaurus/plugin-pwa": "^3.10.0",
|
|
70
|
+
"@docusaurus/preset-classic": "^3.10.0",
|
|
71
|
+
"@docusaurus/theme-mermaid": "^3.10.0",
|
|
72
|
+
"@docusaurus/types": "^3.10.0",
|
|
73
73
|
"@easyops-cn/docusaurus-search-local": "^0.55.1",
|
|
74
74
|
"clsx": "^2.1.1",
|
|
75
75
|
"prism-react-renderer": "^2.4.1"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@docusaurus/module-type-aliases": "^3.
|
|
79
|
-
"@docusaurus/tsconfig": "^3.
|
|
80
|
-
"@eslint/config-inspector": "^
|
|
78
|
+
"@docusaurus/module-type-aliases": "^3.10.0",
|
|
79
|
+
"@docusaurus/tsconfig": "^3.10.0",
|
|
80
|
+
"@eslint/config-inspector": "^2.0.0",
|
|
81
81
|
"@mdx-js/react": "^3.1.1",
|
|
82
82
|
"@types/react": "^19.2.14",
|
|
83
83
|
"@types/react-dom": "^19.2.3",
|
|
84
84
|
"docusaurus-plugin-image-zoom": "^3.0.1",
|
|
85
|
-
"react": "^19.2.
|
|
86
|
-
"react-dom": "^19.2.
|
|
85
|
+
"react": "^19.2.5",
|
|
86
|
+
"react-dom": "^19.2.5",
|
|
87
87
|
"react-github-btn": "^1.4.0",
|
|
88
88
|
"typed-css-modules": "^0.9.1",
|
|
89
|
-
"typedoc": "^0.28.
|
|
89
|
+
"typedoc": "^0.28.19",
|
|
90
90
|
"typedoc-docusaurus-theme": "^1.4.2",
|
|
91
|
-
"typedoc-plugin-coverage": "^4.0.
|
|
92
|
-
"typedoc-plugin-dt-links": "^2.0.
|
|
91
|
+
"typedoc-plugin-coverage": "^4.0.3",
|
|
92
|
+
"typedoc-plugin-dt-links": "^2.0.51",
|
|
93
93
|
"typedoc-plugin-external-package-links": "^0.2.0",
|
|
94
94
|
"typedoc-plugin-markdown": "^4.11.0",
|
|
95
95
|
"typedoc-plugin-mdn-links": "^5.1.1",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"typedoc-plugin-remark": "^2.0.1",
|
|
98
98
|
"typedoc-plugin-rename-defaults": "^0.7.3",
|
|
99
99
|
"typedoc-plugin-replace-text": "^4.2.0",
|
|
100
|
-
"typescript": "^6.0.
|
|
100
|
+
"typescript": "^6.0.3"
|
|
101
101
|
},
|
|
102
102
|
"peerDependencies": {
|
|
103
103
|
"react": "^19.2.4",
|
|
@@ -328,7 +328,7 @@ if (uncategorizedRuleDocIds.length > 0) {
|
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
/** Complete sidebar structure for docs site navigation. */
|
|
331
|
-
const sidebars
|
|
331
|
+
const sidebars = {
|
|
332
332
|
rules: [
|
|
333
333
|
...preRuleDocs,
|
|
334
334
|
{
|
|
@@ -382,6 +382,6 @@ const sidebars: SidebarsConfig = {
|
|
|
382
382
|
],
|
|
383
383
|
},
|
|
384
384
|
],
|
|
385
|
-
};
|
|
385
|
+
} as const satisfies SidebarsConfig;
|
|
386
386
|
|
|
387
387
|
export default sidebars;
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
|
6
6
|
|
|
7
7
|
/** Main sidebar configuration for the default docs plugin instance. */
|
|
8
|
-
const sidebars
|
|
8
|
+
const sidebars = {
|
|
9
9
|
docs: [
|
|
10
10
|
{
|
|
11
11
|
className: "sb-doc-intro",
|
|
@@ -131,6 +131,6 @@ const sidebars: SidebarsConfig = {
|
|
|
131
131
|
],
|
|
132
132
|
},
|
|
133
133
|
],
|
|
134
|
-
};
|
|
134
|
+
} as const satisfies SidebarsConfig;
|
|
135
135
|
|
|
136
136
|
export default sidebars;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
.liveBadgeList {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-wrap: wrap;
|
|
4
|
+
padding: 0;
|
|
5
|
+
margin: 0;
|
|
6
|
+
gap: 0.58rem;
|
|
7
|
+
list-style-type: "";
|
|
8
|
+
padding-block-start: 16px;
|
|
9
|
+
padding-inline-start: 0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.liveBadgeListItem {
|
|
13
|
+
margin: 0;
|
|
14
|
+
list-style-type: "";
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.liveBadgeAnchor {
|
|
18
|
+
display: inline-flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
justify-content: center;
|
|
21
|
+
padding: 0;
|
|
22
|
+
border: 0;
|
|
23
|
+
border-radius: 0;
|
|
24
|
+
background: transparent;
|
|
25
|
+
transition:
|
|
26
|
+
filter 140ms ease,
|
|
27
|
+
transform 140ms ease;
|
|
28
|
+
|
|
29
|
+
&:hover,
|
|
30
|
+
&:focus {
|
|
31
|
+
filter: brightness(1.06);
|
|
32
|
+
transform: translateY(-1px);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.liveBadgeImage {
|
|
37
|
+
display: block;
|
|
38
|
+
block-size: 20px;
|
|
39
|
+
inline-size: auto;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@media (width <= 640px) {
|
|
43
|
+
.liveBadgeImage {
|
|
44
|
+
block-size: 18px;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/** eslint-disable css/use-baseline */
|
|
2
|
-
/* stylelint-disable plugin/no-low-performance-animation-properties, order/properties-order, no-descending-specificity, csstools/use-nesting, a11y/media-prefers-reduced-motion -- Docusaurus CSS breaks these features */
|
|
3
2
|
|
|
4
3
|
/**
|
|
5
4
|
* Global CSS overrides for Docusaurus documentation site.
|
package/docs/rules/words.md
CHANGED
|
@@ -36,7 +36,7 @@ This rule forwards options and behavior to
|
|
|
36
36
|
- **Lifecycle:** Deprecated and frozen.
|
|
37
37
|
- **Deprecated since:** `v1.0.0`
|
|
38
38
|
- **Available until:** `v2.0.0`
|
|
39
|
-
- **Use instead:** [`write-good-comments/write-good-comments`](https://github.com/
|
|
39
|
+
- **Use instead:** [`write-good-comments/write-good-comments`](https://github.com/Nick2bad4u/eslint-plugin-write-good-comments-2)
|
|
40
40
|
|
|
41
41
|
## Additional examples
|
|
42
42
|
|
|
@@ -75,7 +75,7 @@ Disable this rule if your team does not want prose-quality checks for comments.
|
|
|
75
75
|
|
|
76
76
|
## Further reading
|
|
77
77
|
|
|
78
|
-
- [eslint-plugin-write-good-comments](https://github.com/
|
|
78
|
+
- [eslint-plugin-write-good-comments-2](https://github.com/Nick2bad4u/eslint-plugin-write-good-comments-2)
|
|
79
79
|
|
|
80
80
|
## Adoption resources
|
|
81
81
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package.json",
|
|
3
3
|
"name": "eslint-plugin-etc-misc",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.8",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "ESLint Plugin combining eslint-plugin-etc and eslint-plugin-misc!",
|
|
7
7
|
"keywords": [
|
|
@@ -58,10 +58,12 @@
|
|
|
58
58
|
"docs/docusaurus"
|
|
59
59
|
],
|
|
60
60
|
"scripts": {
|
|
61
|
-
"build": "tsc -
|
|
61
|
+
"build": "tsc -b tsconfig.build.json --force && npm run build:types:cjs && npm run build:cjs",
|
|
62
|
+
"build:cjs": "esbuild dist/plugin.js --bundle --format=cjs --platform=node --packages=external --sourcemap --outfile=dist/plugin.cjs --footer:js=\"module.exports = module.exports.default;\"",
|
|
62
63
|
"build:clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
63
64
|
"build:eslint-inspector": "npx -y @eslint/config-inspector@1.4.2 build --outDir \"docs/docusaurus/static/eslint-inspector\" --base \"/eslint-plugin-etc-misc/eslint-inspector/\"",
|
|
64
65
|
"build:eslint-inspector:local": "npx @eslint/config-inspector",
|
|
66
|
+
"build:types:cjs": "node -e \"require('node:fs').copyFileSync('dist/plugin.d.ts','dist/plugin.d.cts')\"",
|
|
65
67
|
"changelog:generate": "git-cliff --config cliff.toml --output CHANGELOG.md",
|
|
66
68
|
"changelog:preview": "git-cliff --config cliff.toml --unreleased",
|
|
67
69
|
"changelog:release-notes": "git-cliff --config cliff.toml --latest --strip all",
|
|
@@ -98,7 +100,6 @@
|
|
|
98
100
|
"docs:typedoc": "npm run --workspace docs/docusaurus docs:api",
|
|
99
101
|
"docs:typedoc:local": "npm run --workspace docs/docusaurus docs:api:local",
|
|
100
102
|
"docs:validate-links": "remark docs --use remark-validate-links --frail",
|
|
101
|
-
"fix:imports:nodenext": "node scripts/fix-source-import-specifiers.mjs",
|
|
102
103
|
"knip": "cross-env NODE_OPTIONS=--max_old_space_size=4096 NODE_NO_WARNINGS=1 npx knip -c knip.config.ts --include-libs --cache --cache-location .cache/knip --tsConfig tsconfig.json",
|
|
103
104
|
"prelint": "npm run build",
|
|
104
105
|
"lint": "cross-env NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache",
|
|
@@ -151,7 +152,7 @@
|
|
|
151
152
|
"lint:unused-deps": "depcheck --ignores='@types/*,@testing-library/*,@vitest/*'",
|
|
152
153
|
"lint:yaml": "cross-env NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache \"**/*.{yml,yaml}\" && echo \"YAML lint done!\"",
|
|
153
154
|
"lint:yaml:fix": "cross-env NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache --fix \"**/*.{yml,yaml}\" && echo \"YAML lint (fix) done!\"",
|
|
154
|
-
"madge:circular": "
|
|
155
|
+
"madge:circular": "madge --circular --no-spinner --ts-config tsconfig.json --extensions ts,tsx,js,jsx,mjs,cjs,cts,mts ./src --exclude \"(^|[\\/])(test|dist|node_modules|cache|.cache|coverage|build|eslint-inspector|temp|.docusaurus)($|[\\/])|\\.css$\"",
|
|
155
156
|
"madge:leaves": "madge --leaves --no-spinner --ts-config tsconfig.json --extensions ts,tsx,js,jsx,mjs,cjs,cts,mts ./src --exclude \"(^|[\\/])(test|dist|node_modules|cache|.cache|coverage|build|eslint-inspector|temp|.docusaurus)($|[\\/])|\\.css$\"",
|
|
156
157
|
"madge:orphans": "madge --orphans --no-spinner --ts-config tsconfig.json --extensions ts,tsx,js,jsx,mjs,cjs,cts,mts ./src --exclude \"(^|[\\/])(test|dist|node_modules|cache|.cache|coverage|build|eslint-inspector|temp|.docusaurus)($|[\\/])|\\.css$\"",
|
|
157
158
|
"open:coverage": "open-cli coverage/index.html",
|
|
@@ -164,8 +165,6 @@
|
|
|
164
165
|
"sync:readme-rules-table": "node scripts/sync-readme-rules-table.mjs",
|
|
165
166
|
"pretest": "npm run build",
|
|
166
167
|
"test": "vitest run",
|
|
167
|
-
"test:autofix:fixtures": "cross-env TYPEFEST_AUTOFIX_SMOKE=1 vitest run test/autofix-fixtures-all-rules-smoke.test.ts",
|
|
168
|
-
"test:autofix:fixtures:typed": "cross-env TYPEFEST_AUTOFIX_SMOKE=1 TYPEFEST_AUTOFIX_FIXTURE_DIR=test/fixtures/typed vitest run test/autofix-fixtures-all-rules-smoke.test.ts",
|
|
169
168
|
"test:ci": "cross-env CI=true vitest run --reporter=default",
|
|
170
169
|
"test:coverage": "vitest run --coverage --reporter=default",
|
|
171
170
|
"test:coverage:detailed": "vitest run --coverage --reporter=verbose",
|
|
@@ -191,58 +190,58 @@
|
|
|
191
190
|
},
|
|
192
191
|
"dependencies": {
|
|
193
192
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
194
|
-
"@typescript-eslint/
|
|
195
|
-
"@typescript-eslint/
|
|
196
|
-
"@typescript-eslint/utils": "^8.58.0",
|
|
193
|
+
"@typescript-eslint/type-utils": "^8.59.0",
|
|
194
|
+
"@typescript-eslint/utils": "^8.59.0",
|
|
197
195
|
"debug": "^4.4.3",
|
|
198
196
|
"eslint-visitor-keys": "^5.0.1",
|
|
199
197
|
"minimatch": "^10.2.5",
|
|
200
198
|
"semver": "^7.7.4",
|
|
201
|
-
"tinyglobby": "^0.2.
|
|
202
|
-
"ts-extras": "^0.
|
|
199
|
+
"tinyglobby": "^0.2.16",
|
|
200
|
+
"ts-extras": "^1.0.0",
|
|
203
201
|
"tslib": "^2.8.1",
|
|
204
202
|
"tsutils": "^3.21.0",
|
|
205
|
-
"type-fest": "^5.
|
|
203
|
+
"type-fest": "^5.6.0"
|
|
206
204
|
},
|
|
207
205
|
"devDependencies": {
|
|
208
206
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
209
|
-
"@codecov/
|
|
207
|
+
"@codecov/bundle-analyzer": "^2.0.1",
|
|
208
|
+
"@codecov/vite-plugin": "^2.0.1",
|
|
210
209
|
"@csstools/stylelint-formatter-github": "^2.0.0",
|
|
211
|
-
"@docusaurus/eslint-plugin": "^3.
|
|
210
|
+
"@docusaurus/eslint-plugin": "^3.10.0",
|
|
212
211
|
"@double-great/remark-lint-alt-text": "^1.1.1",
|
|
213
|
-
"@double-great/stylelint-a11y": "^3.4.
|
|
212
|
+
"@double-great/stylelint-a11y": "^3.4.10",
|
|
214
213
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
|
|
215
214
|
"@eslint-react/eslint-plugin": "^4.2.3",
|
|
216
|
-
"@eslint/compat": "^2.0.
|
|
217
|
-
"@eslint/config-helpers": "^0.5.
|
|
218
|
-
"@eslint/config-inspector": "^
|
|
215
|
+
"@eslint/compat": "^2.0.5",
|
|
216
|
+
"@eslint/config-helpers": "^0.5.5",
|
|
217
|
+
"@eslint/config-inspector": "^2.0.0",
|
|
219
218
|
"@eslint/css": "^1.1.0",
|
|
220
219
|
"@eslint/js": "^10.0.1",
|
|
221
220
|
"@eslint/json": "^1.2.0",
|
|
222
221
|
"@eslint/markdown": "^8.0.1",
|
|
223
|
-
"@html-eslint/eslint-plugin": "^0.
|
|
224
|
-
"@html-eslint/parser": "^0.
|
|
222
|
+
"@html-eslint/eslint-plugin": "^0.59.0",
|
|
223
|
+
"@html-eslint/parser": "^0.59.0",
|
|
225
224
|
"@microsoft/eslint-plugin-sdl": "^1.1.0",
|
|
226
225
|
"@microsoft/tsdoc-config": "^0.18.1",
|
|
227
|
-
"@secretlint/secretlint-rule-anthropic": "^
|
|
228
|
-
"@secretlint/secretlint-rule-aws": "^
|
|
229
|
-
"@secretlint/secretlint-rule-database-connection-string": "^
|
|
230
|
-
"@secretlint/secretlint-rule-gcp": "^
|
|
231
|
-
"@secretlint/secretlint-rule-github": "^
|
|
232
|
-
"@secretlint/secretlint-rule-no-dotenv": "^
|
|
233
|
-
"@secretlint/secretlint-rule-no-homedir": "^
|
|
234
|
-
"@secretlint/secretlint-rule-npm": "^
|
|
235
|
-
"@secretlint/secretlint-rule-openai": "^
|
|
236
|
-
"@secretlint/secretlint-rule-pattern": "^
|
|
237
|
-
"@secretlint/secretlint-rule-preset-recommend": "^
|
|
238
|
-
"@secretlint/secretlint-rule-privatekey": "^
|
|
239
|
-
"@secretlint/secretlint-rule-secp256k1-privatekey": "^
|
|
240
|
-
"@secretlint/types": "^
|
|
226
|
+
"@secretlint/secretlint-rule-anthropic": "^12.1.0",
|
|
227
|
+
"@secretlint/secretlint-rule-aws": "^12.1.0",
|
|
228
|
+
"@secretlint/secretlint-rule-database-connection-string": "^12.1.0",
|
|
229
|
+
"@secretlint/secretlint-rule-gcp": "^12.1.0",
|
|
230
|
+
"@secretlint/secretlint-rule-github": "^12.1.0",
|
|
231
|
+
"@secretlint/secretlint-rule-no-dotenv": "^12.1.0",
|
|
232
|
+
"@secretlint/secretlint-rule-no-homedir": "^12.1.0",
|
|
233
|
+
"@secretlint/secretlint-rule-npm": "^12.1.0",
|
|
234
|
+
"@secretlint/secretlint-rule-openai": "^12.1.0",
|
|
235
|
+
"@secretlint/secretlint-rule-pattern": "^12.1.0",
|
|
236
|
+
"@secretlint/secretlint-rule-preset-recommend": "^12.1.0",
|
|
237
|
+
"@secretlint/secretlint-rule-privatekey": "^12.1.0",
|
|
238
|
+
"@secretlint/secretlint-rule-secp256k1-privatekey": "^12.1.0",
|
|
239
|
+
"@secretlint/types": "^12.1.0",
|
|
241
240
|
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
|
|
242
241
|
"@stryker-ignorer/console-all": "^0.3.2",
|
|
243
|
-
"@stryker-mutator/core": "^9.6.
|
|
244
|
-
"@stryker-mutator/typescript-checker": "^9.6.
|
|
245
|
-
"@stryker-mutator/vitest-runner": "^9.6.
|
|
242
|
+
"@stryker-mutator/core": "^9.6.1",
|
|
243
|
+
"@stryker-mutator/typescript-checker": "^9.6.1",
|
|
244
|
+
"@stryker-mutator/vitest-runner": "^9.6.1",
|
|
246
245
|
"@stylelint-types/stylelint-order": "^7.0.1",
|
|
247
246
|
"@stylelint-types/stylelint-stylistic": "^5.0.0",
|
|
248
247
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
@@ -251,7 +250,7 @@
|
|
|
251
250
|
"@types/eslint-plugin-security": "^3.0.1",
|
|
252
251
|
"@types/htmlhint": "^1.1.5",
|
|
253
252
|
"@types/madge": "^5.0.3",
|
|
254
|
-
"@types/node": "^25.
|
|
253
|
+
"@types/node": "^25.6.0",
|
|
255
254
|
"@types/postcss-clamp": "^4.1.3",
|
|
256
255
|
"@types/postcss-flexbugs-fixes": "^5.0.3",
|
|
257
256
|
"@types/postcss-html": "^1.5.3",
|
|
@@ -260,11 +259,13 @@
|
|
|
260
259
|
"@types/postcss-normalize": "^9.0.4",
|
|
261
260
|
"@types/postcss-reporter": "^7.0.5",
|
|
262
261
|
"@types/sloc": "^0.2.3",
|
|
263
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
264
|
-
"@typescript-eslint/
|
|
265
|
-
"@
|
|
266
|
-
"@
|
|
267
|
-
"@vitest/
|
|
262
|
+
"@typescript-eslint/eslint-plugin": "^8.59.0",
|
|
263
|
+
"@typescript-eslint/parser": "^8.59.0",
|
|
264
|
+
"@typescript-eslint/rule-tester": "^8.59.0",
|
|
265
|
+
"@typpi/eslint-plugin-vite": "^1.0.12",
|
|
266
|
+
"@vitest/coverage-v8": "^4.1.4",
|
|
267
|
+
"@vitest/eslint-plugin": "^1.6.16",
|
|
268
|
+
"@vitest/ui": "^4.1.4",
|
|
268
269
|
"actionlint": "^2.0.6",
|
|
269
270
|
"all-contributors-cli": "^6.26.1",
|
|
270
271
|
"cognitive-complexity-ts": "^0.8.1",
|
|
@@ -272,22 +273,28 @@
|
|
|
272
273
|
"cross-env": "^10.1.0",
|
|
273
274
|
"depcheck": "^1.4.7",
|
|
274
275
|
"detect-secrets": "^1.0.6",
|
|
275
|
-
"
|
|
276
|
+
"esbuild": "^0.27.7",
|
|
277
|
+
"eslint": "^10.2.1",
|
|
276
278
|
"eslint-config-flat-gitignore": "^2.3.0",
|
|
277
279
|
"eslint-config-prettier": "^10.1.8",
|
|
278
280
|
"eslint-formatter-unix": "^9.0.1",
|
|
279
281
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
280
282
|
"eslint-plugin-array-func": "^5.1.1",
|
|
281
283
|
"eslint-plugin-canonical": "^5.1.3",
|
|
282
|
-
"eslint-plugin-case-police": "^2.2.
|
|
284
|
+
"eslint-plugin-case-police": "^2.2.1",
|
|
283
285
|
"eslint-plugin-comment-length": "^2.3.0",
|
|
286
|
+
"eslint-plugin-copilot": "^1.0.8",
|
|
284
287
|
"eslint-plugin-css-modules": "^2.12.0",
|
|
285
288
|
"eslint-plugin-de-morgan": "^2.1.1",
|
|
286
289
|
"eslint-plugin-depend": "^1.5.0",
|
|
290
|
+
"eslint-plugin-docusaurus-2": "^0.1.4",
|
|
287
291
|
"eslint-plugin-eslint-plugin": "^7.3.2",
|
|
288
292
|
"eslint-plugin-etc": "^2.0.3",
|
|
289
|
-
"eslint-plugin-
|
|
293
|
+
"eslint-plugin-etc-misc": "^1.0.7",
|
|
294
|
+
"eslint-plugin-file-progress-2": "^5.0.1",
|
|
295
|
+
"eslint-plugin-github-actions-2": "^1.0.6",
|
|
290
296
|
"eslint-plugin-html": "^8.1.4",
|
|
297
|
+
"eslint-plugin-immutable-2": "^1.0.10",
|
|
291
298
|
"eslint-plugin-import-x": "^4.16.2",
|
|
292
299
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
293
300
|
"eslint-plugin-jsonc": "^3.1.2",
|
|
@@ -298,7 +305,7 @@
|
|
|
298
305
|
"eslint-plugin-module-interop": "^0.3.1",
|
|
299
306
|
"eslint-plugin-n": "^17.24.0",
|
|
300
307
|
"eslint-plugin-nitpick": "^0.12.0",
|
|
301
|
-
"eslint-plugin-no-barrel-files": "^1.
|
|
308
|
+
"eslint-plugin-no-barrel-files": "^1.3.1",
|
|
302
309
|
"eslint-plugin-no-explicit-type-exports": "^0.12.1",
|
|
303
310
|
"eslint-plugin-no-function-declare-after-return": "^1.1.0",
|
|
304
311
|
"eslint-plugin-no-lookahead-lookbehind-regexp": "^0.4.0",
|
|
@@ -308,42 +315,45 @@
|
|
|
308
315
|
"eslint-plugin-no-use-extend-native": "^0.7.2",
|
|
309
316
|
"eslint-plugin-node-dependencies": "^2.2.0",
|
|
310
317
|
"eslint-plugin-package-json": "^0.91.1",
|
|
311
|
-
"eslint-plugin-perfectionist": "^5.
|
|
318
|
+
"eslint-plugin-perfectionist": "^5.9.0",
|
|
312
319
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
313
320
|
"eslint-plugin-prettier": "^5.5.5",
|
|
314
321
|
"eslint-plugin-promise": "^7.2.1",
|
|
315
322
|
"eslint-plugin-redos": "^4.5.0",
|
|
316
323
|
"eslint-plugin-regexp": "^3.1.0",
|
|
317
324
|
"eslint-plugin-require-jsdoc": "^1.0.4",
|
|
325
|
+
"eslint-plugin-sdl-2": "^1.0.7",
|
|
318
326
|
"eslint-plugin-security": "^4.0.0",
|
|
319
|
-
"eslint-plugin-sonarjs": "^4.0.
|
|
327
|
+
"eslint-plugin-sonarjs": "^4.0.3",
|
|
320
328
|
"eslint-plugin-sort-class-members": "^1.22.1",
|
|
329
|
+
"eslint-plugin-stylelint-2": "^1.0.14",
|
|
321
330
|
"eslint-plugin-testing-library": "^7.16.2",
|
|
322
331
|
"eslint-plugin-toml": "^1.3.1",
|
|
323
332
|
"eslint-plugin-total-functions": "^7.1.0",
|
|
324
333
|
"eslint-plugin-tsdoc": "^0.5.2",
|
|
325
|
-
"eslint-plugin-tsdoc-require-2": "^1.0.
|
|
326
|
-
"eslint-plugin-
|
|
334
|
+
"eslint-plugin-tsdoc-require-2": "^1.0.9",
|
|
335
|
+
"eslint-plugin-typedoc": "^1.1.4",
|
|
336
|
+
"eslint-plugin-typefest": "^1.2.3",
|
|
327
337
|
"eslint-plugin-undefined-css-classes": "^0.1.5",
|
|
328
338
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
329
339
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
330
|
-
"eslint-plugin-write-good-comments": "^0.
|
|
340
|
+
"eslint-plugin-write-good-comments-2": "^1.0.6",
|
|
331
341
|
"eslint-plugin-yml": "^3.3.1",
|
|
332
|
-
"fast-check": "^4.
|
|
342
|
+
"fast-check": "^4.7.0",
|
|
333
343
|
"git-cliff": "^2.12.0",
|
|
334
344
|
"gitleaks-secret-scanner": "^2.1.1",
|
|
335
|
-
"globals": "^17.
|
|
345
|
+
"globals": "^17.5.0",
|
|
336
346
|
"htmlhint": "^1.9.2",
|
|
337
|
-
"jscpd": "^4.0.
|
|
347
|
+
"jscpd": "^4.0.9",
|
|
338
348
|
"jsonc-eslint-parser": "^3.1.0",
|
|
339
|
-
"knip": "^6.
|
|
349
|
+
"knip": "^6.5.0",
|
|
340
350
|
"leasot": "^14.4.0",
|
|
341
351
|
"madge": "^8.0.0",
|
|
342
352
|
"markdown-link-check": "^3.14.2",
|
|
343
|
-
"npm-check-updates": "^
|
|
344
|
-
"npm-package-json-lint": "^10.2.
|
|
353
|
+
"npm-check-updates": "^21.0.2",
|
|
354
|
+
"npm-package-json-lint": "^10.2.1",
|
|
345
355
|
"picocolors": "^1.1.1",
|
|
346
|
-
"postcss": "^8.5.
|
|
356
|
+
"postcss": "^8.5.10",
|
|
347
357
|
"postcss-assets": "^6.0.0",
|
|
348
358
|
"postcss-clamp": "^4.1.0",
|
|
349
359
|
"postcss-combine-duplicated-selectors": "^10.0.3",
|
|
@@ -356,11 +366,11 @@
|
|
|
356
366
|
"postcss-reporter": "^7.1.0",
|
|
357
367
|
"postcss-round-subpixels": "^2.0.0",
|
|
358
368
|
"postcss-scss": "^4.0.9",
|
|
359
|
-
"postcss-sort-media-queries": "^6.
|
|
369
|
+
"postcss-sort-media-queries": "^6.5.0",
|
|
360
370
|
"postcss-styled-jsx": "^1.0.1",
|
|
361
371
|
"postcss-styled-syntax": "^0.7.1",
|
|
362
372
|
"postcss-viewport-height-correction": "^1.1.1",
|
|
363
|
-
"prettier": "^3.8.
|
|
373
|
+
"prettier": "^3.8.3",
|
|
364
374
|
"prettier-plugin-ini": "^1.3.0",
|
|
365
375
|
"prettier-plugin-interpolated-html-tags": "^2.0.1",
|
|
366
376
|
"prettier-plugin-jsdoc": "^1.8.0",
|
|
@@ -369,7 +379,9 @@
|
|
|
369
379
|
"prettier-plugin-multiline-arrays": "^4.1.5",
|
|
370
380
|
"prettier-plugin-packagejson": "^3.0.2",
|
|
371
381
|
"prettier-plugin-properties": "^0.3.1",
|
|
382
|
+
"prettier-plugin-sh": "^0.18.1",
|
|
372
383
|
"prettier-plugin-sort-json": "^4.2.0",
|
|
384
|
+
"prettier-plugin-sql": "^0.20.0",
|
|
373
385
|
"prettier-plugin-toml": "^2.0.6",
|
|
374
386
|
"publint": "^0.3.18",
|
|
375
387
|
"recheck-jar": "^4.5.0",
|
|
@@ -480,10 +492,10 @@
|
|
|
480
492
|
"remark-validate-links": "^13.1.0",
|
|
481
493
|
"remark-wiki-link": "^2.0.1",
|
|
482
494
|
"rimraf": "^6.1.3",
|
|
483
|
-
"secretlint": "^
|
|
495
|
+
"secretlint": "^12.1.0",
|
|
484
496
|
"sloc": "^0.3.2",
|
|
485
497
|
"sort-package-json": "^3.6.1",
|
|
486
|
-
"stylelint": "^17.
|
|
498
|
+
"stylelint": "^17.8.0",
|
|
487
499
|
"stylelint-actions-formatters": "^16.3.1",
|
|
488
500
|
"stylelint-checkstyle-formatter": "^0.1.2",
|
|
489
501
|
"stylelint-codeframe-formatter": "^1.2.0",
|
|
@@ -511,7 +523,7 @@
|
|
|
511
523
|
"stylelint-no-unresolved-module": "^2.5.2",
|
|
512
524
|
"stylelint-no-unsupported-browser-features": "^8.1.1",
|
|
513
525
|
"stylelint-order": "^8.1.1",
|
|
514
|
-
"stylelint-plugin-defensive-css": "^2.
|
|
526
|
+
"stylelint-plugin-defensive-css": "^2.9.1",
|
|
515
527
|
"stylelint-plugin-logical-css": "^2.1.0",
|
|
516
528
|
"stylelint-plugin-use-baseline": "^1.4.1",
|
|
517
529
|
"stylelint-prettier": "^5.0.3",
|
|
@@ -522,19 +534,19 @@
|
|
|
522
534
|
"stylelint-value-no-unknown-custom-properties": "^6.1.1",
|
|
523
535
|
"toml-eslint-parser": "^1.0.3",
|
|
524
536
|
"ts-unused-exports": "^11.0.1",
|
|
525
|
-
"typedoc": "^0.28.
|
|
526
|
-
"typescript": "^6.0.
|
|
527
|
-
"typescript-eslint": "^8.
|
|
537
|
+
"typedoc": "^0.28.19",
|
|
538
|
+
"typescript": "^6.0.3",
|
|
539
|
+
"typescript-eslint": "^8.59.0",
|
|
528
540
|
"typesync": "^0.14.3",
|
|
529
541
|
"vfile": "^6.0.3",
|
|
530
|
-
"vite": "^8.0.
|
|
542
|
+
"vite": "^8.0.9",
|
|
531
543
|
"vite-tsconfig-paths": "^6.1.1",
|
|
532
|
-
"vitest": "^4.1.
|
|
544
|
+
"vitest": "^4.1.4",
|
|
533
545
|
"yaml-eslint-parser": "^2.0.0",
|
|
534
546
|
"yamllint-js": "^0.2.4"
|
|
535
547
|
},
|
|
536
548
|
"peerDependencies": {
|
|
537
|
-
"eslint": "^9.0.0 || ^10.2.
|
|
549
|
+
"eslint": "^9.0.0 || ^10.2.1",
|
|
538
550
|
"typescript": ">=5.0.0"
|
|
539
551
|
},
|
|
540
552
|
"packageManager": "npm@11.12.1",
|