eslint-plugin-etc-misc 1.1.0 → 1.1.2
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 +3 -0
- package/dist/configs/all-strict.d.ts +1 -0
- package/dist/configs/all-strict.d.ts.map +1 -1
- package/dist/configs/all-strict.js +1 -0
- package/dist/configs/all-strict.js.map +1 -1
- package/dist/configs/all.d.ts +1 -0
- package/dist/configs/all.d.ts.map +1 -1
- package/dist/configs/all.js +1 -0
- package/dist/configs/all.js.map +1 -1
- package/dist/configs/minimal.d.ts +3 -0
- package/dist/configs/minimal.d.ts.map +1 -1
- package/dist/configs/minimal.js +3 -0
- package/dist/configs/minimal.js.map +1 -1
- package/dist/configs/recommended.d.ts +3 -0
- package/dist/configs/recommended.d.ts.map +1 -1
- package/dist/configs/recommended.js +3 -0
- package/dist/configs/recommended.js.map +1 -1
- package/dist/configs/strict-type-checked.d.ts +1 -0
- package/dist/configs/strict-type-checked.d.ts.map +1 -1
- package/dist/configs/strict-type-checked.js +1 -0
- package/dist/configs/strict-type-checked.js.map +1 -1
- package/dist/configs/strict.d.ts +1 -0
- package/dist/configs/strict.d.ts.map +1 -1
- package/dist/configs/strict.js +1 -0
- package/dist/configs/strict.js.map +1 -1
- package/dist/configs.d.ts +8 -7
- package/dist/configs.d.ts.map +1 -1
- package/dist/configs.js +1 -0
- package/dist/configs.js.map +1 -1
- package/dist/plugin.cjs +967 -404
- package/dist/plugin.cjs.map +4 -4
- package/dist/rules/no-commented-out-code.d.ts.map +1 -1
- package/dist/rules/no-commented-out-code.js.map +1 -1
- package/dist/rules/no-function-declare-after-return.d.ts +19 -0
- package/dist/rules/no-function-declare-after-return.d.ts.map +1 -0
- package/dist/rules/no-function-declare-after-return.js +119 -0
- package/dist/rules/no-function-declare-after-return.js.map +1 -0
- package/dist/rules/no-use-extend-native.d.ts +9 -0
- package/dist/rules/no-use-extend-native.d.ts.map +1 -0
- package/dist/rules/no-use-extend-native.js +296 -0
- package/dist/rules/no-use-extend-native.js.map +1 -0
- package/dist/rules/no-vulnerable.d.ts +15 -0
- package/dist/rules/no-vulnerable.d.ts.map +1 -0
- package/dist/rules/no-vulnerable.js +182 -0
- package/dist/rules/no-vulnerable.js.map +1 -0
- package/dist/rules.d.ts.map +1 -1
- package/dist/rules.js +8 -0
- package/dist/rules.js.map +1 -1
- package/docs/docusaurus/package.json +5 -5
- package/docs/docusaurus/src/components/GitHubStats.jsx +2 -1
- package/docs/docusaurus/src/components/GitHubStats.module.css.d.ts +7 -0
- package/docs/docusaurus/src/css/custom.css.d.ts +3 -0
- package/docs/docusaurus/src/pages/index.module.css +23 -12
- package/docs/docusaurus/src/pages/index.module.css.d.ts +6 -11
- package/docs/rules/no-function-declare-after-return.md +143 -0
- package/docs/rules/no-use-extend-native.md +89 -0
- package/docs/rules/no-vulnerable.md +110 -0
- package/package.json +32 -221
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.1.
|
|
4
|
+
"version": "1.1.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "ESLint Plugin combining eslint-plugin-etc and eslint-plugin-misc!",
|
|
7
7
|
"keywords": [
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"build": "tsc -b tsconfig.build.json --force && npm run build:types:cjs && npm run build:cjs",
|
|
62
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;\"",
|
|
63
63
|
"build:clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
64
|
-
"build:eslint-inspector": "npx -y @eslint/config-inspector@
|
|
64
|
+
"build:eslint-inspector": "npx -y @eslint/config-inspector@latest build --outDir \"docs/docusaurus/static/eslint-inspector\" --base \"/eslint-plugin-etc-misc/eslint-inspector/\"",
|
|
65
65
|
"build:eslint-inspector:local": "npx @eslint/config-inspector",
|
|
66
66
|
"build:types:cjs": "node -e \"require('node:fs').copyFileSync('dist/plugin.d.ts','dist/plugin.d.cts')\"",
|
|
67
67
|
"changelog:generate": "git-cliff --config cliff.toml --output CHANGELOG.md",
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"lint:quiet": "cross-env ESLINT_PROGRESS=nofile NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache && echo \"Eslint done!\"",
|
|
145
145
|
"lint:remark": "remark --rc-path .remarkrc.mjs --silently-ignore --ignore-path .remarkignore --frail \"*.{md,mdx}\" \"docs/**/*.{md,mdx}\" --quiet",
|
|
146
146
|
"lint:remark:fix": "prettier --log-level warn --ignore-path prettierignore.remark --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --no-error-on-unmatched-pattern --write \"*.{md,mdx}\" \"docs/**/*.{md,mdx}\" && npm run remark:fix",
|
|
147
|
-
"lint:secretlint": "secretlint --secretlintrc .secretlintrc.
|
|
147
|
+
"lint:secretlint": "secretlint --secretlintrc .secretlintrc.cjs --secretlintignore .secretlintignore \"./*\" \".vscode/**\" \"assets/**\" \"src/**\" \"electron/**\" \"shared/**\" \"config/**\" \"scripts/**\" \"playwright/**\" \"storybook/**\" \".storybook\" \"tests/**\" \"benchmarks/**\" \".devin/**\" \"public/**\" \".github/**\" \"docs/Architecture/**\" \"docs/*\" \"docs/assets/**\" \"docs/Guides/**\" \"docs/Testing/**\" \"docs/TSDoc/**\" \"docs/docusaurus/src/**\" \"docs/docusaurus/static/**\" \"docs/docusaurus/blog/**\" \"docs/docusaurus/docs/**\" \"docs/docusaurus/docs/*\"",
|
|
148
148
|
"lint:secrets": "detect-secrets scan",
|
|
149
149
|
"lint:unused": "npm run knip -- --include unlisted,unresolved,duplicates",
|
|
150
150
|
"lint:unused-deps": "depcheck --ignores='@types/*,@testing-library/*,@vitest/*'",
|
|
@@ -190,17 +190,18 @@
|
|
|
190
190
|
"dependencies": {
|
|
191
191
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
|
|
192
192
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
193
|
-
"@typescript-eslint/eslint-plugin": "^8.59.
|
|
194
|
-
"@typescript-eslint/parser": "^8.59.
|
|
195
|
-
"@typescript-eslint/type-utils": "^8.59.
|
|
196
|
-
"@typescript-eslint/utils": "^8.59.
|
|
193
|
+
"@typescript-eslint/eslint-plugin": "^8.59.2",
|
|
194
|
+
"@typescript-eslint/parser": "^8.59.2",
|
|
195
|
+
"@typescript-eslint/type-utils": "^8.59.2",
|
|
196
|
+
"@typescript-eslint/utils": "^8.59.2",
|
|
197
197
|
"debug": "^4.4.3",
|
|
198
198
|
"eslint-plugin-no-secrets": "^2.3.3",
|
|
199
199
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
200
|
-
"eslint-plugin-write-good-comments-2": "^1.1
|
|
200
|
+
"eslint-plugin-write-good-comments-2": "^1.2.1",
|
|
201
201
|
"eslint-visitor-keys": "^5.0.1",
|
|
202
202
|
"minimatch": "^10.2.5",
|
|
203
|
-
"
|
|
203
|
+
"recheck": "^4.5.0",
|
|
204
|
+
"semver": "^7.8.0",
|
|
204
205
|
"tinyglobby": "^0.2.16",
|
|
205
206
|
"ts-extras": "^1.0.0",
|
|
206
207
|
"tslib": "^2.8.1",
|
|
@@ -213,263 +214,73 @@
|
|
|
213
214
|
"@codecov/vite-plugin": "^2.0.1",
|
|
214
215
|
"@csstools/stylelint-formatter-github": "^2.0.0",
|
|
215
216
|
"@double-great/remark-lint-alt-text": "^1.1.1",
|
|
216
|
-
"@
|
|
217
|
-
"@eslint/
|
|
218
|
-
"@eslint/config-inspector": "^2.0.0",
|
|
217
|
+
"@eslint/compat": "^2.1.0",
|
|
218
|
+
"@eslint/config-inspector": "^2.0.1",
|
|
219
219
|
"@microsoft/tsdoc-config": "^0.18.1",
|
|
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",
|
|
234
|
-
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
|
|
235
220
|
"@stryker-ignorer/console-all": "^0.3.2",
|
|
236
221
|
"@stryker-mutator/core": "^9.6.1",
|
|
237
222
|
"@stryker-mutator/typescript-checker": "^9.6.1",
|
|
238
223
|
"@stryker-mutator/vitest-runner": "^9.6.1",
|
|
239
|
-
"@stylelint-types/stylelint-order": "^7.0.1",
|
|
240
|
-
"@stylelint-types/stylelint-stylistic": "^5.0.0",
|
|
241
|
-
"@stylistic/stylelint-plugin": "^5.1.0",
|
|
242
224
|
"@types/htmlhint": "^1.1.5",
|
|
243
225
|
"@types/madge": "^5.0.3",
|
|
244
|
-
"@types/node": "^25.6.
|
|
245
|
-
"@types/postcss-clamp": "^4.1.3",
|
|
246
|
-
"@types/postcss-flexbugs-fixes": "^5.0.3",
|
|
247
|
-
"@types/postcss-html": "^1.5.3",
|
|
248
|
-
"@types/postcss-import": "^14.0.3",
|
|
249
|
-
"@types/postcss-inline-svg": "^5.0.4",
|
|
250
|
-
"@types/postcss-normalize": "^9.0.4",
|
|
251
|
-
"@types/postcss-reporter": "^7.0.5",
|
|
226
|
+
"@types/node": "^25.6.2",
|
|
252
227
|
"@types/sloc": "^0.2.3",
|
|
253
|
-
"@typescript-eslint/rule-tester": "^8.59.
|
|
228
|
+
"@typescript-eslint/rule-tester": "^8.59.2",
|
|
254
229
|
"@vitest/coverage-v8": "^4.1.5",
|
|
255
230
|
"@vitest/ui": "^4.1.5",
|
|
256
231
|
"actionlint": "^2.0.6",
|
|
257
232
|
"all-contributors-cli": "^6.26.1",
|
|
258
233
|
"cognitive-complexity-ts": "^0.8.1",
|
|
259
|
-
"commitlint": "^
|
|
234
|
+
"commitlint": "^21.0.0",
|
|
260
235
|
"cross-env": "^10.1.0",
|
|
261
236
|
"depcheck": "^1.4.7",
|
|
262
237
|
"detect-secrets": "^1.0.6",
|
|
263
238
|
"esbuild": "^0.28.0",
|
|
264
|
-
"eslint": "^10.
|
|
265
|
-
"eslint-config-nick2bad4u": "^1.0.
|
|
239
|
+
"eslint": "^10.3.0",
|
|
240
|
+
"eslint-config-nick2bad4u": "^1.0.11",
|
|
266
241
|
"eslint-formatter-unix": "^9.0.1",
|
|
267
242
|
"fast-check": "^4.7.0",
|
|
268
243
|
"git-cliff": "^2.13.1",
|
|
269
244
|
"gitleaks-secret-scanner": "^2.1.1",
|
|
270
245
|
"htmlhint": "^1.9.2",
|
|
271
|
-
"jscpd": "^4.0
|
|
272
|
-
"knip": "^6.
|
|
246
|
+
"jscpd": "^4.1.0",
|
|
247
|
+
"knip": "^6.12.2",
|
|
273
248
|
"leasot": "^14.4.0",
|
|
274
249
|
"madge": "^8.0.0",
|
|
275
250
|
"markdown-link-check": "^3.14.2",
|
|
276
|
-
"npm-check-updates": "^22.
|
|
277
|
-
"npm-package-json-lint": "^10.
|
|
251
|
+
"npm-check-updates": "^22.1.1",
|
|
252
|
+
"npm-package-json-lint": "^10.4.0",
|
|
278
253
|
"picocolors": "^1.1.1",
|
|
279
|
-
"postcss": "^8.5.13",
|
|
280
|
-
"postcss-assets": "^6.0.0",
|
|
281
|
-
"postcss-clamp": "^4.1.0",
|
|
282
|
-
"postcss-combine-duplicated-selectors": "^10.0.3",
|
|
283
|
-
"postcss-flexbugs-fixes": "^5.0.2",
|
|
284
|
-
"postcss-html": "^1.8.1",
|
|
285
|
-
"postcss-import": "^16.1.1",
|
|
286
|
-
"postcss-inline-svg": "^6.0.0",
|
|
287
|
-
"postcss-logical": "^9.0.0",
|
|
288
|
-
"postcss-normalize": "^13.0.1",
|
|
289
|
-
"postcss-reporter": "^7.1.0",
|
|
290
|
-
"postcss-round-subpixels": "^2.0.0",
|
|
291
|
-
"postcss-scss": "^4.0.9",
|
|
292
|
-
"postcss-sort-media-queries": "^6.5.0",
|
|
293
|
-
"postcss-styled-jsx": "^1.0.1",
|
|
294
|
-
"postcss-styled-syntax": "^0.7.1",
|
|
295
|
-
"postcss-viewport-height-correction": "^1.1.1",
|
|
296
254
|
"prettier": "^3.8.3",
|
|
297
|
-
"prettier-
|
|
298
|
-
"
|
|
299
|
-
"prettier-plugin-jsdoc": "^1.8.0",
|
|
300
|
-
"prettier-plugin-jsdoc-type": "^0.2.0",
|
|
301
|
-
"prettier-plugin-merge": "^0.10.1",
|
|
302
|
-
"prettier-plugin-multiline-arrays": "^4.1.7",
|
|
303
|
-
"prettier-plugin-packagejson": "^3.0.2",
|
|
304
|
-
"prettier-plugin-properties": "^0.3.1",
|
|
305
|
-
"prettier-plugin-sh": "^0.18.1",
|
|
306
|
-
"prettier-plugin-sort-json": "^4.2.0",
|
|
307
|
-
"prettier-plugin-sql": "^0.20.0",
|
|
308
|
-
"prettier-plugin-toml": "^2.0.6",
|
|
309
|
-
"publint": "^0.3.18",
|
|
255
|
+
"prettier-config-nick2bad4u": "^1.0.10",
|
|
256
|
+
"publint": "^0.3.20",
|
|
310
257
|
"rehype-katex": "^7.0.1",
|
|
311
258
|
"remark": "^15.0.1",
|
|
312
259
|
"remark-cli": "^12.0.1",
|
|
313
|
-
"remark-
|
|
314
|
-
"remark-frontmatter": "^5.0.0",
|
|
315
|
-
"remark-gfm": "^4.0.1",
|
|
316
|
-
"remark-ignore": "^3.0.0",
|
|
317
|
-
"remark-inline-links": "^7.0.0",
|
|
318
|
-
"remark-lint": "^10.0.1",
|
|
319
|
-
"remark-lint-blockquote-indentation": "^4.0.1",
|
|
320
|
-
"remark-lint-check-toc": "^1.0.0",
|
|
321
|
-
"remark-lint-checkbox-character-style": "^5.0.1",
|
|
322
|
-
"remark-lint-checkbox-content-indent": "^5.0.1",
|
|
323
|
-
"remark-lint-code-block-split-list": "^1.0.0",
|
|
324
|
-
"remark-lint-code-block-style": "^4.0.1",
|
|
325
|
-
"remark-lint-correct-media-syntax": "^1.0.1",
|
|
326
|
-
"remark-lint-definition-case": "^4.0.1",
|
|
327
|
-
"remark-lint-definition-sort": "^1.0.1",
|
|
328
|
-
"remark-lint-definition-spacing": "^4.0.1",
|
|
329
|
-
"remark-lint-directive-attribute-sort": "^1.0.1",
|
|
330
|
-
"remark-lint-directive-collapsed-attribute": "^1.0.1",
|
|
331
|
-
"remark-lint-directive-quote-style": "^1.0.1",
|
|
332
|
-
"remark-lint-directive-shortcut-attribute": "^1.0.1",
|
|
333
|
-
"remark-lint-directive-unique-attribute-name": "^1.0.1",
|
|
334
|
-
"remark-lint-emphasis-marker": "^4.0.1",
|
|
335
|
-
"remark-lint-fenced-code-flag": "^4.2.0",
|
|
336
|
-
"remark-lint-fenced-code-flag-case": "^3.0.0",
|
|
337
|
-
"remark-lint-fenced-code-marker": "^4.0.1",
|
|
338
|
-
"remark-lint-file-extension": "^3.0.1",
|
|
339
|
-
"remark-lint-final-definition": "^4.0.2",
|
|
340
|
-
"remark-lint-final-newline": "^3.0.1",
|
|
341
|
-
"remark-lint-first-heading-level": "^4.0.1",
|
|
342
|
-
"remark-lint-frontmatter-schema": "^3.15.4",
|
|
343
|
-
"remark-lint-hard-break-spaces": "^4.1.1",
|
|
344
|
-
"remark-lint-heading-capitalization": "^1.3.0",
|
|
345
|
-
"remark-lint-heading-increment": "^4.0.1",
|
|
346
|
-
"remark-lint-heading-style": "^4.0.1",
|
|
347
|
-
"remark-lint-heading-whitespace": "^1.0.0",
|
|
348
|
-
"remark-lint-linebreak-style": "^4.0.1",
|
|
349
|
-
"remark-lint-link-title-style": "^4.0.1",
|
|
350
|
-
"remark-lint-list-item-bullet-indent": "^5.0.1",
|
|
351
|
-
"remark-lint-list-item-content-indent": "^4.0.1",
|
|
352
|
-
"remark-lint-list-item-indent": "^4.0.1",
|
|
353
|
-
"remark-lint-list-item-spacing": "^5.0.1",
|
|
354
|
-
"remark-lint-maximum-heading-length": "^4.1.1",
|
|
355
|
-
"remark-lint-maximum-line-length": "^4.1.1",
|
|
356
|
-
"remark-lint-mdx-jsx-attribute-sort": "^1.0.1",
|
|
357
|
-
"remark-lint-mdx-jsx-no-void-children": "^1.0.1",
|
|
358
|
-
"remark-lint-mdx-jsx-quote-style": "^1.0.1",
|
|
359
|
-
"remark-lint-mdx-jsx-self-close": "^1.0.1",
|
|
360
|
-
"remark-lint-mdx-jsx-shorthand-attribute": "^1.0.1",
|
|
361
|
-
"remark-lint-mdx-jsx-unique-attribute-name": "^1.0.1",
|
|
362
|
-
"remark-lint-media-style": "^1.0.1",
|
|
363
|
-
"remark-lint-no-blockquote-without-marker": "^6.0.1",
|
|
364
|
-
"remark-lint-no-consecutive-blank-lines": "^5.0.1",
|
|
365
|
-
"remark-lint-no-dead-urls": "^2.0.1",
|
|
366
|
-
"remark-lint-no-duplicate-defined-urls": "^3.0.1",
|
|
367
|
-
"remark-lint-no-duplicate-definitions": "^4.0.1",
|
|
368
|
-
"remark-lint-no-duplicate-headings": "^4.0.1",
|
|
369
|
-
"remark-lint-no-duplicate-headings-in-section": "^4.0.1",
|
|
370
|
-
"remark-lint-no-emphasis-as-heading": "^4.0.1",
|
|
371
|
-
"remark-lint-no-empty-sections": "^4.0.0",
|
|
372
|
-
"remark-lint-no-empty-url": "^4.0.1",
|
|
373
|
-
"remark-lint-no-file-name-articles": "^3.0.1",
|
|
374
|
-
"remark-lint-no-file-name-consecutive-dashes": "^3.0.1",
|
|
375
|
-
"remark-lint-no-file-name-irregular-characters": "^3.0.1",
|
|
376
|
-
"remark-lint-no-file-name-mixed-case": "^3.0.1",
|
|
377
|
-
"remark-lint-no-file-name-outer-dashes": "^3.0.1",
|
|
378
|
-
"remark-lint-no-heading-content-indent": "^5.0.1",
|
|
379
|
-
"remark-lint-no-heading-indent": "^5.0.1",
|
|
380
|
-
"remark-lint-no-heading-like-paragraph": "^4.0.1",
|
|
381
|
-
"remark-lint-no-heading-punctuation": "^4.0.1",
|
|
382
|
-
"remark-lint-no-hidden-table-cell": "^1.0.1",
|
|
383
|
-
"remark-lint-no-html": "^4.0.1",
|
|
384
|
-
"remark-lint-no-literal-urls": "^4.0.1",
|
|
385
|
-
"remark-lint-no-missing-blank-lines": "^4.0.1",
|
|
386
|
-
"remark-lint-no-multiple-toplevel-headings": "^4.0.1",
|
|
387
|
-
"remark-lint-no-paragraph-content-indent": "^5.0.1",
|
|
388
|
-
"remark-lint-no-reference-like-url": "^4.0.1",
|
|
389
|
-
"remark-lint-no-shell-dollars": "^4.0.1",
|
|
390
|
-
"remark-lint-no-shortcut-reference-image": "^4.0.1",
|
|
391
|
-
"remark-lint-no-shortcut-reference-link": "^4.0.1",
|
|
392
|
-
"remark-lint-no-table-indentation": "^5.0.1",
|
|
393
|
-
"remark-lint-no-tabs": "^4.0.1",
|
|
394
|
-
"remark-lint-no-undefined-references": "^5.0.2",
|
|
395
|
-
"remark-lint-no-unneeded-full-reference-image": "^4.0.1",
|
|
396
|
-
"remark-lint-no-unneeded-full-reference-link": "^4.0.1",
|
|
397
|
-
"remark-lint-no-unused-definitions": "^4.0.2",
|
|
398
|
-
"remark-lint-ordered-list-marker-style": "^4.0.1",
|
|
399
|
-
"remark-lint-ordered-list-marker-value": "^4.0.1",
|
|
400
|
-
"remark-lint-rule-style": "^4.0.1",
|
|
401
|
-
"remark-lint-strikethrough-marker": "^3.0.1",
|
|
402
|
-
"remark-lint-strong-marker": "^4.0.1",
|
|
403
|
-
"remark-lint-table-cell-padding": "^5.1.1",
|
|
404
|
-
"remark-lint-table-pipe-alignment": "^4.1.1",
|
|
405
|
-
"remark-lint-table-pipes": "^5.0.1",
|
|
406
|
-
"remark-lint-unordered-list-marker-style": "^4.0.1",
|
|
407
|
-
"remark-lint-write-good": "^1.2.0",
|
|
408
|
-
"remark-math": "^6.0.0",
|
|
409
|
-
"remark-preset-lint-consistent": "^6.0.1",
|
|
410
|
-
"remark-preset-lint-markdown-style-guide": "^6.0.1",
|
|
411
|
-
"remark-preset-lint-recommended": "^7.0.1",
|
|
412
|
-
"remark-preset-prettier": "^2.0.2",
|
|
413
|
-
"remark-toc": "^9.0.0",
|
|
414
|
-
"remark-validate-links": "^13.1.0",
|
|
415
|
-
"remark-wiki-link": "^2.0.1",
|
|
260
|
+
"remark-config-nick2bad4u": "^1.0.1",
|
|
416
261
|
"rimraf": "^6.1.3",
|
|
417
|
-
"secretlint": "^
|
|
262
|
+
"secretlint": "^13.0.0",
|
|
263
|
+
"secretlint-config-nick2bad4u": "^1.0.4",
|
|
418
264
|
"sloc": "^0.3.2",
|
|
419
265
|
"sort-package-json": "^3.6.1",
|
|
420
|
-
"stylelint": "^17.
|
|
421
|
-
"stylelint-
|
|
422
|
-
"stylelint-checkstyle-formatter": "^0.1.2",
|
|
423
|
-
"stylelint-codeframe-formatter": "^1.2.0",
|
|
424
|
-
"stylelint-config-alphabetical-order": "^2.0.0",
|
|
425
|
-
"stylelint-config-idiomatic-order": "^10.0.0",
|
|
426
|
-
"stylelint-config-recess-order": "^7.7.0",
|
|
427
|
-
"stylelint-config-recommended": "^18.0.0",
|
|
428
|
-
"stylelint-config-sass-guidelines": "^13.0.0",
|
|
429
|
-
"stylelint-config-standard": "^40.0.0",
|
|
430
|
-
"stylelint-config-standard-scss": "^17.0.0",
|
|
431
|
-
"stylelint-config-tailwindcss": "^1.0.1",
|
|
432
|
-
"stylelint-declaration-block-no-ignored-properties": "^3.0.0",
|
|
433
|
-
"stylelint-declaration-strict-value": "^1.11.1",
|
|
434
|
-
"stylelint-define-config": "^17.9.0",
|
|
435
|
-
"stylelint-find-new-rules": "^6.0.0",
|
|
436
|
-
"stylelint-formatter-gitlab-code-quality-report": "^1.1.0",
|
|
437
|
-
"stylelint-formatter-pretty": "^4.0.1",
|
|
438
|
-
"stylelint-gamut": "^2.0.0",
|
|
439
|
-
"stylelint-group-selectors": "^1.0.10",
|
|
440
|
-
"stylelint-high-performance-animation": "^2.0.0",
|
|
441
|
-
"stylelint-media-use-custom-media": "^4.1.0",
|
|
442
|
-
"stylelint-no-browser-hacks": "^2.0.2",
|
|
443
|
-
"stylelint-no-indistinguishable-colors": "^2.3.1",
|
|
444
|
-
"stylelint-no-restricted-syntax": "^2.2.1",
|
|
445
|
-
"stylelint-no-unresolved-module": "^2.5.2",
|
|
446
|
-
"stylelint-no-unsupported-browser-features": "^8.1.1",
|
|
447
|
-
"stylelint-order": "^8.1.1",
|
|
448
|
-
"stylelint-plugin-defensive-css": "^2.9.1",
|
|
449
|
-
"stylelint-plugin-logical-css": "^2.1.0",
|
|
450
|
-
"stylelint-plugin-use-baseline": "^1.4.1",
|
|
451
|
-
"stylelint-prettier": "^5.0.3",
|
|
452
|
-
"stylelint-react-native": "^2.7.0",
|
|
453
|
-
"stylelint-scales": "^5.0.0",
|
|
454
|
-
"stylelint-selector-bem-pattern": "^4.0.1",
|
|
455
|
-
"stylelint-use-nesting": "^6.0.2",
|
|
456
|
-
"stylelint-value-no-unknown-custom-properties": "^6.1.1",
|
|
266
|
+
"stylelint": "^17.11.0",
|
|
267
|
+
"stylelint-config-nick2bad4u": "^1.0.10",
|
|
457
268
|
"ts-unused-exports": "^11.0.1",
|
|
458
269
|
"typedoc": "^0.28.19",
|
|
459
270
|
"typescript": "^6.0.3",
|
|
460
|
-
"typescript-eslint": "^8.59.
|
|
271
|
+
"typescript-eslint": "^8.59.2",
|
|
461
272
|
"typesync": "^0.14.3",
|
|
462
273
|
"vfile": "^6.0.3",
|
|
463
|
-
"vite": "^8.0.
|
|
274
|
+
"vite": "^8.0.11",
|
|
464
275
|
"vite-tsconfig-paths": "^6.1.1",
|
|
465
276
|
"vitest": "^4.1.5",
|
|
466
277
|
"yamllint-js": "^0.2.4"
|
|
467
278
|
},
|
|
468
279
|
"peerDependencies": {
|
|
469
|
-
"eslint": "^9.0.0 || ^10.
|
|
280
|
+
"eslint": "^9.0.0 || ^10.3.0",
|
|
470
281
|
"typescript": ">=5.0.0"
|
|
471
282
|
},
|
|
472
|
-
"packageManager": "npm@11.
|
|
283
|
+
"packageManager": "npm@11.14.1",
|
|
473
284
|
"engines": {
|
|
474
285
|
"node": ">=20.19.0"
|
|
475
286
|
},
|