eslint-plugin-etc-misc 1.0.7 → 1.1.0

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.
Files changed (44) hide show
  1. package/dist/_internal/rule-creator.d.ts.map +1 -1
  2. package/dist/_internal/rule-creator.js +0 -2
  3. package/dist/_internal/rule-creator.js.map +1 -1
  4. package/dist/_internal/syntax-selectors.d.ts.map +1 -1
  5. package/dist/_internal/syntax-selectors.js +0 -1
  6. package/dist/_internal/syntax-selectors.js.map +1 -1
  7. package/dist/plugin.cjs +8864 -3
  8. package/dist/plugin.cjs.map +7 -0
  9. package/dist/plugin.d.cts +15 -2
  10. package/dist/rules/consistent-enum-members.js +1 -1
  11. package/dist/rules/consistent-enum-members.js.map +1 -1
  12. package/dist/rules/consistent-symbol-description.js +1 -1
  13. package/dist/rules/consistent-symbol-description.js.map +1 -1
  14. package/dist/rules/no-language-mixing.js +2 -2
  15. package/dist/rules/no-language-mixing.js.map +1 -1
  16. package/dist/rules/no-misused-generics.d.ts.map +1 -1
  17. package/dist/rules/no-misused-generics.js +31 -25
  18. package/dist/rules/no-misused-generics.js.map +1 -1
  19. package/dist/rules/restrict-identifier-characters.js +1 -1
  20. package/dist/rules/restrict-identifier-characters.js.map +1 -1
  21. package/dist/rules/typescript-class-methods-use-this.d.ts.map +1 -1
  22. package/dist/rules/typescript-class-methods-use-this.js +27 -22
  23. package/dist/rules/typescript-class-methods-use-this.js.map +1 -1
  24. package/dist/rules/typescript-consistent-array-type-name.js +1 -1
  25. package/dist/rules/typescript-consistent-array-type-name.js.map +1 -1
  26. package/dist/rules/typescript-prefer-array-type-alias.js +1 -1
  27. package/dist/rules/typescript-prefer-array-type-alias.js.map +1 -1
  28. package/dist/rules/typescript-prefer-enum.d.ts.map +1 -1
  29. package/dist/rules/typescript-prefer-enum.js +8 -6
  30. package/dist/rules/typescript-prefer-enum.js.map +1 -1
  31. package/dist/rules.d.ts.map +1 -1
  32. package/dist/rules.js +1 -3
  33. package/dist/rules.js.map +1 -1
  34. package/docs/docusaurus/.browserslistrc +9 -0
  35. package/docs/docusaurus/docusaurus.config.ts +8 -8
  36. package/docs/docusaurus/package.json +18 -31
  37. package/docs/docusaurus/sidebars.rules.ts +2 -2
  38. package/docs/docusaurus/sidebars.ts +2 -2
  39. package/docs/docusaurus/src/components/GitHubStats.jsx +1 -1
  40. package/docs/docusaurus/src/components/GitHubStats.module.css +46 -0
  41. package/docs/docusaurus/src/css/custom.css +0 -1
  42. package/docs/docusaurus/src/pages/index.module.css +0 -1
  43. package/docs/docusaurus/typedoc.config.json +4 -0
  44. package/package.json +73 -141
@@ -328,7 +328,7 @@ if (uncategorizedRuleDocIds.length > 0) {
328
328
  }
329
329
 
330
330
  /** Complete sidebar structure for docs site navigation. */
331
- const sidebars: SidebarsConfig = {
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: SidebarsConfig = {
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;
@@ -1,6 +1,6 @@
1
1
  import Link from "@docusaurus/Link";
2
2
 
3
- import styles from "../pages/index.module.css";
3
+ import styles from "./GitHubStats.module.css";
4
4
 
5
5
  const liveBadges = [
6
6
  {
@@ -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.
@@ -1,5 +1,4 @@
1
1
  /** eslint-disable css/use-baseline */
2
- /* stylelint-disable defensive-css/require-named-grid-lines, scales/font-sizes -- Docusaurus CSS breaks these features */
3
2
 
4
3
  /**
5
4
  * CSS files with the .module.css suffix will be treated as CSS modules
@@ -63,6 +63,10 @@
63
63
  "categorizeByGroup": false,
64
64
  "cleanOutputDir": true,
65
65
  "commentStyle": "all",
66
+ "coverageLabel": "TypeDoc Coverage",
67
+ "coverageOutputPath": "static/img/coverage",
68
+ "coverageOutputType": "all",
69
+ "coverageSvgWidth": 104,
66
70
  "customAnchorsFormat": "escapedCurlyBrace",
67
71
  "customFooterHtmlDisableWrapper": false,
68
72
  "darkHighlightTheme": "dark-plus",
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.7",
4
+ "version": "1.1.0",
5
5
  "private": false,
6
6
  "description": "ESLint Plugin combining eslint-plugin-etc and eslint-plugin-misc!",
7
7
  "keywords": [
@@ -12,7 +12,7 @@
12
12
  "misc",
13
13
  "tslint"
14
14
  ],
15
- "homepage": "https://github.com/Nick2bad4u/eslint-plugin-etc-misc#readme",
15
+ "homepage": "https://nick2bad4u.github.io/eslint-plugin-etc-misc",
16
16
  "bugs": {
17
17
  "url": "https://github.com/Nick2bad4u/eslint-plugin-etc-misc/issues",
18
18
  "email": "20943337+Nick2bad4u@users.noreply.github.com"
@@ -58,10 +58,12 @@
58
58
  "docs/docusaurus"
59
59
  ],
60
60
  "scripts": {
61
- "build": "tsc -p tsconfig.build.json && node scripts/write-cjs-entry.mjs",
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",
@@ -87,7 +89,6 @@
87
89
  "contrib:generate": "all-contributors generate",
88
90
  "coverage": "vitest run --coverage",
89
91
  "docs:api": "npm run --workspace docs/docusaurus docs:api",
90
- "docs:api:local": "npm run --workspace docs/docusaurus docs:api:local",
91
92
  "docs:build": "npm run --workspace docs/docusaurus build",
92
93
  "docs:build:local": "npm run --workspace docs/docusaurus build:local",
93
94
  "docs:check-links": "node ./scripts/check-doc-links.mjs",
@@ -96,9 +97,7 @@
96
97
  "docs:toc": "remark docs --use remark-toc --output",
97
98
  "docs:typecheck": "npm run --workspace docs/docusaurus typecheck",
98
99
  "docs:typedoc": "npm run --workspace docs/docusaurus docs:api",
99
- "docs:typedoc:local": "npm run --workspace docs/docusaurus docs:api:local",
100
100
  "docs:validate-links": "remark docs --use remark-validate-links --frail",
101
- "fix:imports:nodenext": "node scripts/fix-source-import-specifiers.mjs",
102
101
  "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
102
  "prelint": "npm run build",
104
103
  "lint": "cross-env NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache",
@@ -151,7 +150,7 @@
151
150
  "lint:unused-deps": "depcheck --ignores='@types/*,@testing-library/*,@vitest/*'",
152
151
  "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
152
  "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": "node scripts/lint-circular-deps.mjs",
153
+ "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
154
  "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
155
  "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
156
  "open:coverage": "open-cli coverage/index.html",
@@ -162,10 +161,9 @@
162
161
  "sync:node-version-files": "node scripts/sync-node-version-files.mjs",
163
162
  "sync:peer-eslint-range": "node scripts/sync-peer-eslint-range.mjs",
164
163
  "sync:readme-rules-table": "node scripts/sync-readme-rules-table.mjs",
164
+ "sync:rules:write": "npm run sync:readme-rules-table && npm run sync:peer-eslint-range && npm run sync:node-version-files",
165
165
  "pretest": "npm run build",
166
166
  "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
167
  "test:ci": "cross-env CI=true vitest run --reporter=default",
170
168
  "test:coverage": "vitest run --coverage --reporter=default",
171
169
  "test:coverage:detailed": "vitest run --coverage --reporter=verbose",
@@ -187,72 +185,63 @@
187
185
  "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.build.json --noEmit && tsc -p tsconfig.eslint.json --noEmit && tsc -p tsconfig.js.json --noEmit && npm run --workspace docs/docusaurus typecheck",
188
186
  "typecheck:all": "npm run typecheck",
189
187
  "types:update": "typesync",
190
- "update-deps": "npx ncu -i --install never && npm run sync:peer-eslint-range && npm install --force"
188
+ "update-deps": "npx ncu -i --install never && npm update --workspaces --force && npm install --force && npm run sync:rules:write"
191
189
  },
192
190
  "dependencies": {
191
+ "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
193
192
  "@eslint-community/eslint-utils": "^4.9.1",
194
- "@typescript-eslint/parser": "^8.58.0",
195
- "@typescript-eslint/type-utils": "^8.58.0",
196
- "@typescript-eslint/utils": "^8.58.0",
193
+ "@typescript-eslint/eslint-plugin": "^8.59.1",
194
+ "@typescript-eslint/parser": "^8.59.1",
195
+ "@typescript-eslint/type-utils": "^8.59.1",
196
+ "@typescript-eslint/utils": "^8.59.1",
197
197
  "debug": "^4.4.3",
198
- "eslint-plugin-write-good-comments-2": "^1.0.6",
198
+ "eslint-plugin-no-secrets": "^2.3.3",
199
+ "eslint-plugin-unicorn": "^64.0.0",
200
+ "eslint-plugin-write-good-comments-2": "^1.1.0",
199
201
  "eslint-visitor-keys": "^5.0.1",
200
202
  "minimatch": "^10.2.5",
201
203
  "semver": "^7.7.4",
202
- "tinyglobby": "^0.2.15",
203
- "ts-extras": "^0.19.0",
204
+ "tinyglobby": "^0.2.16",
205
+ "ts-extras": "^1.0.0",
204
206
  "tslib": "^2.8.1",
205
207
  "tsutils": "^3.21.0",
206
- "type-fest": "^5.5.0"
208
+ "type-fest": "^5.6.0"
207
209
  },
208
210
  "devDependencies": {
209
211
  "@arethetypeswrong/cli": "^0.18.2",
210
- "@codecov/vite-plugin": "^1.9.1",
212
+ "@codecov/bundle-analyzer": "^2.0.1",
213
+ "@codecov/vite-plugin": "^2.0.1",
211
214
  "@csstools/stylelint-formatter-github": "^2.0.0",
212
- "@docusaurus/eslint-plugin": "^3.9.2",
213
215
  "@double-great/remark-lint-alt-text": "^1.1.1",
214
- "@double-great/stylelint-a11y": "^3.4.9",
215
- "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
216
- "@eslint-react/eslint-plugin": "^4.2.3",
217
- "@eslint/compat": "^2.0.4",
218
- "@eslint/config-helpers": "^0.5.4",
219
- "@eslint/config-inspector": "^1.5.0",
220
- "@eslint/css": "^1.1.0",
221
- "@eslint/js": "^10.0.1",
222
- "@eslint/json": "^1.2.0",
223
- "@eslint/markdown": "^8.0.1",
224
- "@html-eslint/eslint-plugin": "^0.58.1",
225
- "@html-eslint/parser": "^0.58.1",
226
- "@microsoft/eslint-plugin-sdl": "^1.1.0",
216
+ "@double-great/stylelint-a11y": "^3.4.10",
217
+ "@eslint/compat": "^2.0.5",
218
+ "@eslint/config-inspector": "^2.0.0",
227
219
  "@microsoft/tsdoc-config": "^0.18.1",
228
- "@secretlint/secretlint-rule-anthropic": "^11.5.0",
229
- "@secretlint/secretlint-rule-aws": "^11.5.0",
230
- "@secretlint/secretlint-rule-database-connection-string": "^11.5.0",
231
- "@secretlint/secretlint-rule-gcp": "^11.5.0",
232
- "@secretlint/secretlint-rule-github": "^11.5.0",
233
- "@secretlint/secretlint-rule-no-dotenv": "^11.5.0",
234
- "@secretlint/secretlint-rule-no-homedir": "^11.5.0",
235
- "@secretlint/secretlint-rule-npm": "^11.5.0",
236
- "@secretlint/secretlint-rule-openai": "^11.5.0",
237
- "@secretlint/secretlint-rule-pattern": "^11.5.0",
238
- "@secretlint/secretlint-rule-preset-recommend": "^11.4.1",
239
- "@secretlint/secretlint-rule-privatekey": "^11.5.0",
240
- "@secretlint/secretlint-rule-secp256k1-privatekey": "^11.5.0",
241
- "@secretlint/types": "^11.5.0",
220
+ "@secretlint/secretlint-rule-anthropic": "^12.3.1",
221
+ "@secretlint/secretlint-rule-aws": "^12.3.1",
222
+ "@secretlint/secretlint-rule-database-connection-string": "^12.3.1",
223
+ "@secretlint/secretlint-rule-gcp": "^12.3.1",
224
+ "@secretlint/secretlint-rule-github": "^12.3.1",
225
+ "@secretlint/secretlint-rule-no-dotenv": "^12.3.1",
226
+ "@secretlint/secretlint-rule-no-homedir": "^12.3.1",
227
+ "@secretlint/secretlint-rule-npm": "^12.3.1",
228
+ "@secretlint/secretlint-rule-openai": "^12.3.1",
229
+ "@secretlint/secretlint-rule-pattern": "^12.3.1",
230
+ "@secretlint/secretlint-rule-preset-recommend": "^12.3.1",
231
+ "@secretlint/secretlint-rule-privatekey": "^12.3.1",
232
+ "@secretlint/secretlint-rule-secp256k1-privatekey": "^12.3.1",
233
+ "@secretlint/types": "^12.3.1",
242
234
  "@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
243
235
  "@stryker-ignorer/console-all": "^0.3.2",
244
- "@stryker-mutator/core": "^9.6.0",
245
- "@stryker-mutator/typescript-checker": "^9.6.0",
246
- "@stryker-mutator/vitest-runner": "^9.6.0",
236
+ "@stryker-mutator/core": "^9.6.1",
237
+ "@stryker-mutator/typescript-checker": "^9.6.1",
238
+ "@stryker-mutator/vitest-runner": "^9.6.1",
247
239
  "@stylelint-types/stylelint-order": "^7.0.1",
248
240
  "@stylelint-types/stylelint-stylistic": "^5.0.0",
249
- "@stylistic/eslint-plugin": "^5.10.0",
250
241
  "@stylistic/stylelint-plugin": "^5.1.0",
251
- "@types/eslint-plugin-jsx-a11y": "^6.10.1",
252
- "@types/eslint-plugin-security": "^3.0.1",
253
242
  "@types/htmlhint": "^1.1.5",
254
243
  "@types/madge": "^5.0.3",
255
- "@types/node": "^25.5.2",
244
+ "@types/node": "^25.6.0",
256
245
  "@types/postcss-clamp": "^4.1.3",
257
246
  "@types/postcss-flexbugs-fixes": "^5.0.3",
258
247
  "@types/postcss-html": "^1.5.3",
@@ -261,89 +250,33 @@
261
250
  "@types/postcss-normalize": "^9.0.4",
262
251
  "@types/postcss-reporter": "^7.0.5",
263
252
  "@types/sloc": "^0.2.3",
264
- "@typescript-eslint/eslint-plugin": "^8.58.0",
265
- "@typescript-eslint/rule-tester": "^8.58.0",
266
- "@vitest/coverage-v8": "^4.1.2",
267
- "@vitest/eslint-plugin": "^1.6.14",
268
- "@vitest/ui": "^4.1.2",
253
+ "@typescript-eslint/rule-tester": "^8.59.1",
254
+ "@vitest/coverage-v8": "^4.1.5",
255
+ "@vitest/ui": "^4.1.5",
269
256
  "actionlint": "^2.0.6",
270
257
  "all-contributors-cli": "^6.26.1",
271
258
  "cognitive-complexity-ts": "^0.8.1",
272
- "commitlint": "^20.5.0",
259
+ "commitlint": "^20.5.3",
273
260
  "cross-env": "^10.1.0",
274
261
  "depcheck": "^1.4.7",
275
262
  "detect-secrets": "^1.0.6",
276
- "eslint": "^10.2.0",
277
- "eslint-config-flat-gitignore": "^2.3.0",
278
- "eslint-config-prettier": "^10.1.8",
263
+ "esbuild": "^0.28.0",
264
+ "eslint": "^10.2.1",
265
+ "eslint-config-nick2bad4u": "^1.0.4",
279
266
  "eslint-formatter-unix": "^9.0.1",
280
- "eslint-import-resolver-typescript": "^4.4.4",
281
- "eslint-plugin-array-func": "^5.1.1",
282
- "eslint-plugin-canonical": "^5.1.3",
283
- "eslint-plugin-case-police": "^2.2.0",
284
- "eslint-plugin-comment-length": "^2.3.0",
285
- "eslint-plugin-css-modules": "^2.12.0",
286
- "eslint-plugin-de-morgan": "^2.1.1",
287
- "eslint-plugin-depend": "^1.5.0",
288
- "eslint-plugin-eslint-plugin": "^7.3.2",
289
- "eslint-plugin-etc": "^2.0.3",
290
- "eslint-plugin-file-progress-2": "^3.4.4",
291
- "eslint-plugin-html": "^8.1.4",
292
- "eslint-plugin-import-x": "^4.16.2",
293
- "eslint-plugin-jsdoc": "^62.9.0",
294
- "eslint-plugin-jsonc": "^3.1.2",
295
- "eslint-plugin-jsx-a11y": "^6.10.2",
296
- "eslint-plugin-listeners": "^1.5.1",
297
- "eslint-plugin-loadable-imports": "^1.0.1",
298
- "eslint-plugin-math": "^0.13.1",
299
- "eslint-plugin-module-interop": "^0.3.1",
300
- "eslint-plugin-n": "^17.24.0",
301
- "eslint-plugin-nitpick": "^0.12.0",
302
- "eslint-plugin-no-barrel-files": "^1.2.2",
303
- "eslint-plugin-no-explicit-type-exports": "^0.12.1",
304
- "eslint-plugin-no-function-declare-after-return": "^1.1.0",
305
- "eslint-plugin-no-lookahead-lookbehind-regexp": "^0.4.0",
306
- "eslint-plugin-no-only-tests": "^3.3.0",
307
- "eslint-plugin-no-secrets": "^2.3.3",
308
- "eslint-plugin-no-unsanitized": "^4.1.5",
309
- "eslint-plugin-no-use-extend-native": "^0.7.2",
310
- "eslint-plugin-node-dependencies": "^2.2.0",
311
- "eslint-plugin-package-json": "^0.91.1",
312
- "eslint-plugin-perfectionist": "^5.8.0",
313
- "eslint-plugin-prefer-arrow": "^1.2.3",
314
- "eslint-plugin-prettier": "^5.5.5",
315
- "eslint-plugin-promise": "^7.2.1",
316
- "eslint-plugin-redos": "^4.5.0",
317
- "eslint-plugin-regexp": "^3.1.0",
318
- "eslint-plugin-require-jsdoc": "^1.0.4",
319
- "eslint-plugin-security": "^4.0.0",
320
- "eslint-plugin-sonarjs": "^4.0.2",
321
- "eslint-plugin-sort-class-members": "^1.22.1",
322
- "eslint-plugin-testing-library": "^7.16.2",
323
- "eslint-plugin-toml": "^1.3.1",
324
- "eslint-plugin-total-functions": "^7.1.0",
325
- "eslint-plugin-tsdoc": "^0.5.2",
326
- "eslint-plugin-tsdoc-require-2": "^1.0.7",
327
- "eslint-plugin-typefest": "^1.0.10",
328
- "eslint-plugin-undefined-css-classes": "^0.1.5",
329
- "eslint-plugin-unicorn": "^64.0.0",
330
- "eslint-plugin-unused-imports": "^4.4.1",
331
- "eslint-plugin-yml": "^3.3.1",
332
- "fast-check": "^4.6.0",
333
- "git-cliff": "^2.12.0",
267
+ "fast-check": "^4.7.0",
268
+ "git-cliff": "^2.13.1",
334
269
  "gitleaks-secret-scanner": "^2.1.1",
335
- "globals": "^17.4.0",
336
270
  "htmlhint": "^1.9.2",
337
- "jscpd": "^4.0.8",
338
- "jsonc-eslint-parser": "^3.1.0",
339
- "knip": "^6.3.0",
271
+ "jscpd": "^4.0.9",
272
+ "knip": "^6.9.0",
340
273
  "leasot": "^14.4.0",
341
274
  "madge": "^8.0.0",
342
275
  "markdown-link-check": "^3.14.2",
343
- "npm-check-updates": "^20.0.0",
344
- "npm-package-json-lint": "^10.2.0",
276
+ "npm-check-updates": "^22.0.1",
277
+ "npm-package-json-lint": "^10.3.0",
345
278
  "picocolors": "^1.1.1",
346
- "postcss": "^8.5.8",
279
+ "postcss": "^8.5.13",
347
280
  "postcss-assets": "^6.0.0",
348
281
  "postcss-clamp": "^4.1.0",
349
282
  "postcss-combine-duplicated-selectors": "^10.0.3",
@@ -356,23 +289,24 @@
356
289
  "postcss-reporter": "^7.1.0",
357
290
  "postcss-round-subpixels": "^2.0.0",
358
291
  "postcss-scss": "^4.0.9",
359
- "postcss-sort-media-queries": "^6.3.3",
292
+ "postcss-sort-media-queries": "^6.5.0",
360
293
  "postcss-styled-jsx": "^1.0.1",
361
294
  "postcss-styled-syntax": "^0.7.1",
362
295
  "postcss-viewport-height-correction": "^1.1.1",
363
- "prettier": "^3.8.1",
296
+ "prettier": "^3.8.3",
364
297
  "prettier-plugin-ini": "^1.3.0",
365
298
  "prettier-plugin-interpolated-html-tags": "^2.0.1",
366
299
  "prettier-plugin-jsdoc": "^1.8.0",
367
300
  "prettier-plugin-jsdoc-type": "^0.2.0",
368
301
  "prettier-plugin-merge": "^0.10.1",
369
- "prettier-plugin-multiline-arrays": "^4.1.5",
302
+ "prettier-plugin-multiline-arrays": "^4.1.7",
370
303
  "prettier-plugin-packagejson": "^3.0.2",
371
304
  "prettier-plugin-properties": "^0.3.1",
305
+ "prettier-plugin-sh": "^0.18.1",
372
306
  "prettier-plugin-sort-json": "^4.2.0",
307
+ "prettier-plugin-sql": "^0.20.0",
373
308
  "prettier-plugin-toml": "^2.0.6",
374
309
  "publint": "^0.3.18",
375
- "recheck-jar": "^4.5.0",
376
310
  "rehype-katex": "^7.0.1",
377
311
  "remark": "^15.0.1",
378
312
  "remark-cli": "^12.0.1",
@@ -480,10 +414,10 @@
480
414
  "remark-validate-links": "^13.1.0",
481
415
  "remark-wiki-link": "^2.0.1",
482
416
  "rimraf": "^6.1.3",
483
- "secretlint": "^11.4.1",
417
+ "secretlint": "^12.3.1",
484
418
  "sloc": "^0.3.2",
485
419
  "sort-package-json": "^3.6.1",
486
- "stylelint": "^17.6.0",
420
+ "stylelint": "^17.9.1",
487
421
  "stylelint-actions-formatters": "^16.3.1",
488
422
  "stylelint-checkstyle-formatter": "^0.1.2",
489
423
  "stylelint-codeframe-formatter": "^1.2.0",
@@ -497,7 +431,7 @@
497
431
  "stylelint-config-tailwindcss": "^1.0.1",
498
432
  "stylelint-declaration-block-no-ignored-properties": "^3.0.0",
499
433
  "stylelint-declaration-strict-value": "^1.11.1",
500
- "stylelint-define-config": "^17.5.0",
434
+ "stylelint-define-config": "^17.9.0",
501
435
  "stylelint-find-new-rules": "^6.0.0",
502
436
  "stylelint-formatter-gitlab-code-quality-report": "^1.1.0",
503
437
  "stylelint-formatter-pretty": "^4.0.1",
@@ -505,13 +439,13 @@
505
439
  "stylelint-group-selectors": "^1.0.10",
506
440
  "stylelint-high-performance-animation": "^2.0.0",
507
441
  "stylelint-media-use-custom-media": "^4.1.0",
508
- "stylelint-no-browser-hacks": "^2.0.0",
442
+ "stylelint-no-browser-hacks": "^2.0.2",
509
443
  "stylelint-no-indistinguishable-colors": "^2.3.1",
510
444
  "stylelint-no-restricted-syntax": "^2.2.1",
511
445
  "stylelint-no-unresolved-module": "^2.5.2",
512
446
  "stylelint-no-unsupported-browser-features": "^8.1.1",
513
447
  "stylelint-order": "^8.1.1",
514
- "stylelint-plugin-defensive-css": "^2.8.1",
448
+ "stylelint-plugin-defensive-css": "^2.9.1",
515
449
  "stylelint-plugin-logical-css": "^2.1.0",
516
450
  "stylelint-plugin-use-baseline": "^1.4.1",
517
451
  "stylelint-prettier": "^5.0.3",
@@ -520,24 +454,22 @@
520
454
  "stylelint-selector-bem-pattern": "^4.0.1",
521
455
  "stylelint-use-nesting": "^6.0.2",
522
456
  "stylelint-value-no-unknown-custom-properties": "^6.1.1",
523
- "toml-eslint-parser": "^1.0.3",
524
457
  "ts-unused-exports": "^11.0.1",
525
- "typedoc": "^0.28.18",
526
- "typescript": "^6.0.2",
527
- "typescript-eslint": "^8.58.0",
458
+ "typedoc": "^0.28.19",
459
+ "typescript": "^6.0.3",
460
+ "typescript-eslint": "^8.59.1",
528
461
  "typesync": "^0.14.3",
529
462
  "vfile": "^6.0.3",
530
- "vite": "^8.0.3",
463
+ "vite": "^8.0.10",
531
464
  "vite-tsconfig-paths": "^6.1.1",
532
- "vitest": "^4.1.2",
533
- "yaml-eslint-parser": "^2.0.0",
465
+ "vitest": "^4.1.5",
534
466
  "yamllint-js": "^0.2.4"
535
467
  },
536
468
  "peerDependencies": {
537
- "eslint": "^9.0.0 || ^10.2.0",
469
+ "eslint": "^9.0.0 || ^10.2.1",
538
470
  "typescript": ">=5.0.0"
539
471
  },
540
- "packageManager": "npm@11.12.1",
472
+ "packageManager": "npm@11.13.0",
541
473
  "engines": {
542
474
  "node": ">=20.19.0"
543
475
  },