eslint-plugin-sdl-2 1.1.0 → 1.2.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/dist/plugin.cjs +29 -280
- package/dist/plugin.cjs.map +2 -2
- package/package.json +29 -280
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package.json",
|
|
3
3
|
"name": "eslint-plugin-sdl-2",
|
|
4
|
-
"version": "1.1
|
|
4
|
+
"version": "1.2.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "ESLint plugin providing SDL-focused security and platform hardening rules.",
|
|
7
7
|
"keywords": [
|
|
@@ -109,7 +109,6 @@
|
|
|
109
109
|
"contrib:generate": "all-contributors generate",
|
|
110
110
|
"coverage": "vitest run --coverage",
|
|
111
111
|
"docs:api": "npm run --workspace docs/docusaurus docs:api",
|
|
112
|
-
"docs:api:local": "npm run --workspace docs/docusaurus docs:api:local",
|
|
113
112
|
"docs:build": "npm run --workspace docs/docusaurus build",
|
|
114
113
|
"docs:build:local": "npm run --workspace docs/docusaurus build:local",
|
|
115
114
|
"docs:check-links": "npm run docs:api && node ./scripts/check-doc-links.mjs",
|
|
@@ -118,7 +117,6 @@
|
|
|
118
117
|
"docs:toc": "remark docs --use remark-toc --output",
|
|
119
118
|
"docs:typecheck": "npm run --workspace docs/docusaurus typecheck",
|
|
120
119
|
"docs:typedoc": "npm run --workspace docs/docusaurus docs:api",
|
|
121
|
-
"docs:typedoc:local": "npm run --workspace docs/docusaurus docs:api:local",
|
|
122
120
|
"docs:validate-links": "remark docs --use remark-validate-links --frail",
|
|
123
121
|
"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",
|
|
124
122
|
"lint": "cross-env NODE_OPTIONS=--max_old_space_size=16384 eslint --cache --cache-strategy content --cache-location .cache/.eslintcache",
|
|
@@ -164,7 +162,7 @@
|
|
|
164
162
|
"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!\"",
|
|
165
163
|
"lint:remark": "remark --rc-path .remarkrc.mjs --silently-ignore --ignore-path .remarkignore --frail \"*.{md,mdx}\" \"docs/**/*.{md,mdx}\" --quiet",
|
|
166
164
|
"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",
|
|
167
|
-
"lint:secretlint": "secretlint --secretlintrc .secretlintrc.
|
|
165
|
+
"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/*\"",
|
|
168
166
|
"lint:secrets": "detect-secrets scan",
|
|
169
167
|
"lint:unused": "npm run knip -- --include unlisted,unresolved,duplicates",
|
|
170
168
|
"lint:unused-deps": "depcheck --ignores='@types/*,@testing-library/*,@vitest/*'",
|
|
@@ -185,6 +183,8 @@
|
|
|
185
183
|
"sync:readme-rules-table": "node scripts/sync-readme-rules-table.mjs",
|
|
186
184
|
"sync:readme-rules-table:update": "npm run build && npm run sync:readme-rules-table:write",
|
|
187
185
|
"sync:readme-rules-table:write": "node scripts/sync-readme-rules-table.mjs --write",
|
|
186
|
+
"sync:rules:check": "npm run sync:readme-rules-table && npm run sync:presets-rules-matrix",
|
|
187
|
+
"sync:rules:write": "npm run sync:readme-rules-table:write && npm run sync:presets-rules-matrix",
|
|
188
188
|
"pretest": "npm run build",
|
|
189
189
|
"test": "vitest run",
|
|
190
190
|
"test:autofix:fixtures": "cross-env SDL_AUTOFIX_SMOKE=1 vitest run test/rules-sdl.test.ts",
|
|
@@ -210,63 +210,33 @@
|
|
|
210
210
|
"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",
|
|
211
211
|
"typecheck:all": "npm run typecheck",
|
|
212
212
|
"types:update": "typesync",
|
|
213
|
-
"update-deps": "npx ncu -i --install never && npm run sync:peer-eslint-range && npm
|
|
213
|
+
"update-deps": "npx ncu -i --install never && npm update --workspaces --force && npm install --force && npm run sync:peer-eslint-range && npm run sync:node-version-files && npm run sync:rules:write",
|
|
214
214
|
"verify:readme-rules-table": "npm run build && npm run sync:readme-rules-table"
|
|
215
215
|
},
|
|
216
216
|
"overrides": {
|
|
217
217
|
"jsonc-eslint-parser": "$jsonc-eslint-parser"
|
|
218
218
|
},
|
|
219
219
|
"dependencies": {
|
|
220
|
-
"@
|
|
221
|
-
"@typescript-eslint/
|
|
222
|
-
"@typescript-eslint/
|
|
220
|
+
"@types/eslint-plugin-security": "^3.0.1",
|
|
221
|
+
"@typescript-eslint/eslint-plugin": "^8.59.1",
|
|
222
|
+
"@typescript-eslint/parser": "^8.59.1",
|
|
223
|
+
"@typescript-eslint/type-utils": "^8.59.1",
|
|
224
|
+
"@typescript-eslint/utils": "^8.59.1",
|
|
225
|
+
"eslint-plugin-n": "^17.24.0",
|
|
223
226
|
"ts-extras": "^1.0.0",
|
|
224
227
|
"type-fest": "^5.6.0"
|
|
225
228
|
},
|
|
226
229
|
"devDependencies": {
|
|
227
230
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
228
231
|
"@csstools/stylelint-formatter-github": "^2.0.0",
|
|
229
|
-
"@docusaurus/eslint-plugin": "^3.10.0",
|
|
230
232
|
"@double-great/remark-lint-alt-text": "^1.1.1",
|
|
231
|
-
"@double-great/stylelint-a11y": "^3.4.10",
|
|
232
|
-
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
|
|
233
|
-
"@eslint-react/eslint-plugin": "^4.2.3",
|
|
234
233
|
"@eslint/compat": "^2.0.5",
|
|
235
|
-
"@eslint/config-helpers": "^0.5.5",
|
|
236
234
|
"@eslint/config-inspector": "^2.0.0",
|
|
237
|
-
"@eslint/css": "^1.1.0",
|
|
238
|
-
"@eslint/js": "^10.0.1",
|
|
239
|
-
"@eslint/json": "^1.2.0",
|
|
240
|
-
"@eslint/markdown": "^8.0.1",
|
|
241
|
-
"@html-eslint/eslint-plugin": "^0.59.0",
|
|
242
|
-
"@html-eslint/parser": "^0.59.0",
|
|
243
|
-
"@microsoft/eslint-plugin-sdl": "^1.1.0",
|
|
244
235
|
"@microsoft/tsdoc-config": "^0.18.1",
|
|
245
|
-
"@secretlint/secretlint-rule-anthropic": "^12.2.0",
|
|
246
|
-
"@secretlint/secretlint-rule-aws": "^12.2.0",
|
|
247
|
-
"@secretlint/secretlint-rule-database-connection-string": "^12.2.0",
|
|
248
|
-
"@secretlint/secretlint-rule-gcp": "^12.2.0",
|
|
249
|
-
"@secretlint/secretlint-rule-github": "^12.2.0",
|
|
250
|
-
"@secretlint/secretlint-rule-no-dotenv": "^12.2.0",
|
|
251
|
-
"@secretlint/secretlint-rule-no-homedir": "^12.2.0",
|
|
252
|
-
"@secretlint/secretlint-rule-npm": "^12.2.0",
|
|
253
|
-
"@secretlint/secretlint-rule-openai": "^12.2.0",
|
|
254
|
-
"@secretlint/secretlint-rule-pattern": "^12.2.0",
|
|
255
|
-
"@secretlint/secretlint-rule-preset-recommend": "^12.2.0",
|
|
256
|
-
"@secretlint/secretlint-rule-privatekey": "^12.2.0",
|
|
257
|
-
"@secretlint/secretlint-rule-secp256k1-privatekey": "^12.2.0",
|
|
258
|
-
"@secretlint/types": "^12.2.0",
|
|
259
|
-
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
|
|
260
236
|
"@stryker-ignorer/console-all": "^0.3.2",
|
|
261
237
|
"@stryker-mutator/core": "^9.6.1",
|
|
262
238
|
"@stryker-mutator/typescript-checker": "^9.6.1",
|
|
263
239
|
"@stryker-mutator/vitest-runner": "^9.6.1",
|
|
264
|
-
"@stylelint-types/stylelint-order": "^7.0.1",
|
|
265
|
-
"@stylelint-types/stylelint-stylistic": "^5.0.0",
|
|
266
|
-
"@stylistic/eslint-plugin": "^5.10.0",
|
|
267
|
-
"@stylistic/stylelint-plugin": "^5.1.0",
|
|
268
|
-
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
|
|
269
|
-
"@types/eslint-plugin-security": "^3.0.1",
|
|
270
240
|
"@types/htmlhint": "^1.1.5",
|
|
271
241
|
"@types/madge": "^5.0.3",
|
|
272
242
|
"@types/node": "^25.6.0",
|
|
@@ -278,294 +248,73 @@
|
|
|
278
248
|
"@types/postcss-normalize": "^9.0.4",
|
|
279
249
|
"@types/postcss-reporter": "^7.0.5",
|
|
280
250
|
"@types/sloc": "^0.2.3",
|
|
281
|
-
"@typescript-eslint/
|
|
282
|
-
"@typescript-eslint/rule-tester": "^8.59.0",
|
|
283
|
-
"@typpi/eslint-plugin-vite": "^1.0.13",
|
|
251
|
+
"@typescript-eslint/rule-tester": "^8.59.1",
|
|
284
252
|
"@vitest/coverage-v8": "^4.1.5",
|
|
285
|
-
"@vitest/eslint-plugin": "^1.6.16",
|
|
286
253
|
"@vitest/ui": "^4.1.5",
|
|
287
254
|
"actionlint": "^2.0.6",
|
|
288
255
|
"all-contributors-cli": "^6.26.1",
|
|
289
256
|
"cognitive-complexity-ts": "^0.8.1",
|
|
290
|
-
"commitlint": "^20.5.
|
|
257
|
+
"commitlint": "^20.5.3",
|
|
291
258
|
"commitlint-config-gitmoji": "^2.3.1",
|
|
292
259
|
"cross-env": "^10.1.0",
|
|
293
260
|
"depcheck": "^1.4.7",
|
|
294
261
|
"detect-secrets": "^1.0.6",
|
|
295
|
-
"eslint": "^10.
|
|
296
|
-
"eslint-config-
|
|
297
|
-
"eslint-config-prettier": "^10.1.8",
|
|
262
|
+
"eslint": "^10.3.0",
|
|
263
|
+
"eslint-config-nick2bad4u": "^1.0.11",
|
|
298
264
|
"eslint-formatter-unix": "^9.0.1",
|
|
299
|
-
"eslint-import-resolver-typescript": "^4.4.4",
|
|
300
|
-
"eslint-plugin-array-func": "^5.1.1",
|
|
301
|
-
"eslint-plugin-canonical": "^5.1.3",
|
|
302
|
-
"eslint-plugin-case-police": "^2.2.1",
|
|
303
|
-
"eslint-plugin-comment-length": "^2.3.1",
|
|
304
|
-
"eslint-plugin-copilot": "^1.0.8",
|
|
305
|
-
"eslint-plugin-css-modules": "^2.12.0",
|
|
306
|
-
"eslint-plugin-de-morgan": "^2.1.1",
|
|
307
|
-
"eslint-plugin-depend": "^1.5.0",
|
|
308
|
-
"eslint-plugin-docusaurus-2": "^0.2.0",
|
|
309
|
-
"eslint-plugin-eslint-plugin": "^7.3.2",
|
|
310
|
-
"eslint-plugin-etc": "^2.0.3",
|
|
311
|
-
"eslint-plugin-etc-misc": "^1.0.8",
|
|
312
|
-
"eslint-plugin-file-progress-2": "^5.0.1",
|
|
313
|
-
"eslint-plugin-github-actions-2": "^1.1.0",
|
|
314
|
-
"eslint-plugin-html": "^8.1.4",
|
|
315
|
-
"eslint-plugin-immutable-2": "^1.0.10",
|
|
316
|
-
"eslint-plugin-import-x": "^4.16.2",
|
|
317
|
-
"eslint-plugin-jsdoc": "^62.9.0",
|
|
318
|
-
"eslint-plugin-jsonc": "^3.1.2",
|
|
319
|
-
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
320
|
-
"eslint-plugin-listeners": "^1.5.1",
|
|
321
|
-
"eslint-plugin-loadable-imports": "^1.0.1",
|
|
322
|
-
"eslint-plugin-math": "^0.13.1",
|
|
323
|
-
"eslint-plugin-module-interop": "^0.3.1",
|
|
324
|
-
"eslint-plugin-n": "^17.24.0",
|
|
325
|
-
"eslint-plugin-nitpick": "^0.12.0",
|
|
326
|
-
"eslint-plugin-no-barrel-files": "^1.3.1",
|
|
327
|
-
"eslint-plugin-no-explicit-type-exports": "^0.12.1",
|
|
328
|
-
"eslint-plugin-no-function-declare-after-return": "^1.1.0",
|
|
329
|
-
"eslint-plugin-no-lookahead-lookbehind-regexp": "^0.4.0",
|
|
330
|
-
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
331
|
-
"eslint-plugin-no-secrets": "^2.3.3",
|
|
332
|
-
"eslint-plugin-no-unsanitized": "^4.1.5",
|
|
333
|
-
"eslint-plugin-no-use-extend-native": "^0.7.2",
|
|
334
|
-
"eslint-plugin-node-dependencies": "^2.2.0",
|
|
335
|
-
"eslint-plugin-package-json": "^0.91.1",
|
|
336
|
-
"eslint-plugin-perfectionist": "^5.9.0",
|
|
337
|
-
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
338
|
-
"eslint-plugin-prettier": "^5.5.5",
|
|
339
|
-
"eslint-plugin-promise": "^7.2.1",
|
|
340
|
-
"eslint-plugin-redos": "^4.5.0",
|
|
341
|
-
"eslint-plugin-regexp": "^3.1.0",
|
|
342
|
-
"eslint-plugin-require-jsdoc": "^1.0.4",
|
|
343
|
-
"eslint-plugin-security": "^4.0.0",
|
|
344
|
-
"eslint-plugin-sonarjs": "^4.0.3",
|
|
345
|
-
"eslint-plugin-sort-class-members": "^1.22.1",
|
|
346
|
-
"eslint-plugin-stylelint-2": "^1.1.0",
|
|
347
|
-
"eslint-plugin-testing-library": "^7.16.2",
|
|
348
|
-
"eslint-plugin-toml": "^1.3.1",
|
|
349
|
-
"eslint-plugin-total-functions": "^7.1.0",
|
|
350
|
-
"eslint-plugin-tsdoc": "^0.5.2",
|
|
351
|
-
"eslint-plugin-tsdoc-require-2": "^1.1.0",
|
|
352
|
-
"eslint-plugin-typedoc": "^1.2.0",
|
|
353
|
-
"eslint-plugin-typefest": "^1.2.4",
|
|
354
|
-
"eslint-plugin-undefined-css-classes": "^0.1.5",
|
|
355
|
-
"eslint-plugin-unicorn": "^64.0.0",
|
|
356
|
-
"eslint-plugin-unused-imports": "^4.4.1",
|
|
357
|
-
"eslint-plugin-write-good-comments": "^0.2.0",
|
|
358
|
-
"eslint-plugin-write-good-comments-2": "^1.0.6",
|
|
359
|
-
"eslint-plugin-yml": "^3.3.1",
|
|
360
265
|
"eslint-rule-benchmark": "^0.8.0",
|
|
361
266
|
"fast-check": "^4.7.0",
|
|
362
|
-
"git-cliff": "^2.
|
|
267
|
+
"git-cliff": "^2.13.1",
|
|
363
268
|
"gitleaks-secret-scanner": "^2.1.1",
|
|
364
|
-
"globals": "^17.5.0",
|
|
365
269
|
"htmlhint": "^1.9.2",
|
|
366
270
|
"jscpd": "^4.0.9",
|
|
367
|
-
"
|
|
368
|
-
"knip": "^6.6.1",
|
|
271
|
+
"knip": "^6.11.0",
|
|
369
272
|
"leasot": "^14.4.0",
|
|
370
273
|
"madge": "^8.0.0",
|
|
371
274
|
"markdown-link-check": "^3.14.2",
|
|
372
|
-
"npm-check-updates": "^
|
|
373
|
-
"npm-package-json-lint": "^10.
|
|
275
|
+
"npm-check-updates": "^22.1.0",
|
|
276
|
+
"npm-package-json-lint": "^10.4.0",
|
|
374
277
|
"picocolors": "^1.1.1",
|
|
375
|
-
"postcss": "^8.5.
|
|
278
|
+
"postcss": "^8.5.13",
|
|
376
279
|
"postcss-assets": "^6.0.0",
|
|
377
280
|
"postcss-clamp": "^4.1.0",
|
|
378
281
|
"postcss-combine-duplicated-selectors": "^10.0.3",
|
|
379
282
|
"postcss-flexbugs-fixes": "^5.0.2",
|
|
380
|
-
"postcss-html": "^1.8.1",
|
|
381
283
|
"postcss-import": "^16.1.1",
|
|
382
284
|
"postcss-inline-svg": "^6.0.0",
|
|
383
285
|
"postcss-logical": "^9.0.0",
|
|
384
286
|
"postcss-normalize": "^13.0.1",
|
|
385
287
|
"postcss-reporter": "^7.1.0",
|
|
386
288
|
"postcss-round-subpixels": "^2.0.0",
|
|
387
|
-
"postcss-scss": "^4.0.9",
|
|
388
289
|
"postcss-sort-media-queries": "^6.5.0",
|
|
389
|
-
"postcss-styled-jsx": "^1.0.1",
|
|
390
|
-
"postcss-styled-syntax": "^0.7.1",
|
|
391
290
|
"postcss-viewport-height-correction": "^1.1.1",
|
|
392
291
|
"prettier": "^3.8.3",
|
|
393
|
-
"prettier-
|
|
394
|
-
"prettier-plugin-interpolated-html-tags": "^2.0.1",
|
|
395
|
-
"prettier-plugin-jsdoc": "^1.8.0",
|
|
396
|
-
"prettier-plugin-jsdoc-type": "^0.2.0",
|
|
397
|
-
"prettier-plugin-merge": "^0.10.1",
|
|
398
|
-
"prettier-plugin-multiline-arrays": "^4.1.7",
|
|
399
|
-
"prettier-plugin-packagejson": "^3.0.2",
|
|
400
|
-
"prettier-plugin-properties": "^0.3.1",
|
|
401
|
-
"prettier-plugin-sort-json": "^4.2.0",
|
|
402
|
-
"prettier-plugin-toml": "^2.0.6",
|
|
292
|
+
"prettier-config-nick2bad4u": "^1.0.9",
|
|
403
293
|
"publint": "^0.3.18",
|
|
404
|
-
"recheck-jar": "^4.5.0",
|
|
405
294
|
"rehype-katex": "^7.0.1",
|
|
406
295
|
"remark": "^15.0.1",
|
|
407
296
|
"remark-cli": "^12.0.1",
|
|
408
|
-
"remark-
|
|
409
|
-
"remark-frontmatter": "^5.0.0",
|
|
410
|
-
"remark-gfm": "^4.0.1",
|
|
411
|
-
"remark-ignore": "^3.0.0",
|
|
412
|
-
"remark-inline-links": "^7.0.0",
|
|
413
|
-
"remark-lint": "^10.0.1",
|
|
414
|
-
"remark-lint-blockquote-indentation": "^4.0.1",
|
|
415
|
-
"remark-lint-check-toc": "^1.0.0",
|
|
416
|
-
"remark-lint-checkbox-character-style": "^5.0.1",
|
|
417
|
-
"remark-lint-checkbox-content-indent": "^5.0.1",
|
|
418
|
-
"remark-lint-code-block-split-list": "^1.0.0",
|
|
419
|
-
"remark-lint-code-block-style": "^4.0.1",
|
|
420
|
-
"remark-lint-correct-media-syntax": "^1.0.1",
|
|
421
|
-
"remark-lint-definition-case": "^4.0.1",
|
|
422
|
-
"remark-lint-definition-sort": "^1.0.1",
|
|
423
|
-
"remark-lint-definition-spacing": "^4.0.1",
|
|
424
|
-
"remark-lint-directive-attribute-sort": "^1.0.1",
|
|
425
|
-
"remark-lint-directive-collapsed-attribute": "^1.0.1",
|
|
426
|
-
"remark-lint-directive-quote-style": "^1.0.1",
|
|
427
|
-
"remark-lint-directive-shortcut-attribute": "^1.0.1",
|
|
428
|
-
"remark-lint-directive-unique-attribute-name": "^1.0.1",
|
|
429
|
-
"remark-lint-emphasis-marker": "^4.0.1",
|
|
430
|
-
"remark-lint-fenced-code-flag": "^4.2.0",
|
|
431
|
-
"remark-lint-fenced-code-flag-case": "^3.0.0",
|
|
432
|
-
"remark-lint-fenced-code-marker": "^4.0.1",
|
|
433
|
-
"remark-lint-file-extension": "^3.0.1",
|
|
434
|
-
"remark-lint-final-definition": "^4.0.2",
|
|
435
|
-
"remark-lint-final-newline": "^3.0.1",
|
|
436
|
-
"remark-lint-first-heading-level": "^4.0.1",
|
|
437
|
-
"remark-lint-frontmatter-schema": "^3.15.4",
|
|
438
|
-
"remark-lint-hard-break-spaces": "^4.1.1",
|
|
439
|
-
"remark-lint-heading-capitalization": "^1.3.0",
|
|
440
|
-
"remark-lint-heading-increment": "^4.0.1",
|
|
441
|
-
"remark-lint-heading-style": "^4.0.1",
|
|
442
|
-
"remark-lint-heading-whitespace": "^1.0.0",
|
|
443
|
-
"remark-lint-linebreak-style": "^4.0.1",
|
|
444
|
-
"remark-lint-link-title-style": "^4.0.1",
|
|
445
|
-
"remark-lint-list-item-bullet-indent": "^5.0.1",
|
|
446
|
-
"remark-lint-list-item-content-indent": "^4.0.1",
|
|
447
|
-
"remark-lint-list-item-indent": "^4.0.1",
|
|
448
|
-
"remark-lint-list-item-spacing": "^5.0.1",
|
|
449
|
-
"remark-lint-maximum-heading-length": "^4.1.1",
|
|
450
|
-
"remark-lint-maximum-line-length": "^4.1.1",
|
|
451
|
-
"remark-lint-mdx-jsx-attribute-sort": "^1.0.1",
|
|
452
|
-
"remark-lint-mdx-jsx-no-void-children": "^1.0.1",
|
|
453
|
-
"remark-lint-mdx-jsx-quote-style": "^1.0.1",
|
|
454
|
-
"remark-lint-mdx-jsx-self-close": "^1.0.1",
|
|
455
|
-
"remark-lint-mdx-jsx-shorthand-attribute": "^1.0.1",
|
|
456
|
-
"remark-lint-mdx-jsx-unique-attribute-name": "^1.0.1",
|
|
457
|
-
"remark-lint-media-style": "^1.0.1",
|
|
458
|
-
"remark-lint-no-blockquote-without-marker": "^6.0.1",
|
|
459
|
-
"remark-lint-no-consecutive-blank-lines": "^5.0.1",
|
|
460
|
-
"remark-lint-no-dead-urls": "^2.0.1",
|
|
461
|
-
"remark-lint-no-duplicate-defined-urls": "^3.0.1",
|
|
462
|
-
"remark-lint-no-duplicate-definitions": "^4.0.1",
|
|
463
|
-
"remark-lint-no-duplicate-headings": "^4.0.1",
|
|
464
|
-
"remark-lint-no-duplicate-headings-in-section": "^4.0.1",
|
|
465
|
-
"remark-lint-no-emphasis-as-heading": "^4.0.1",
|
|
466
|
-
"remark-lint-no-empty-sections": "^4.0.0",
|
|
467
|
-
"remark-lint-no-empty-url": "^4.0.1",
|
|
468
|
-
"remark-lint-no-file-name-articles": "^3.0.1",
|
|
469
|
-
"remark-lint-no-file-name-consecutive-dashes": "^3.0.1",
|
|
470
|
-
"remark-lint-no-file-name-irregular-characters": "^3.0.1",
|
|
471
|
-
"remark-lint-no-file-name-mixed-case": "^3.0.1",
|
|
472
|
-
"remark-lint-no-file-name-outer-dashes": "^3.0.1",
|
|
473
|
-
"remark-lint-no-heading-content-indent": "^5.0.1",
|
|
474
|
-
"remark-lint-no-heading-indent": "^5.0.1",
|
|
475
|
-
"remark-lint-no-heading-like-paragraph": "^4.0.1",
|
|
476
|
-
"remark-lint-no-heading-punctuation": "^4.0.1",
|
|
477
|
-
"remark-lint-no-hidden-table-cell": "^1.0.1",
|
|
478
|
-
"remark-lint-no-html": "^4.0.1",
|
|
479
|
-
"remark-lint-no-literal-urls": "^4.0.1",
|
|
480
|
-
"remark-lint-no-missing-blank-lines": "^4.0.1",
|
|
481
|
-
"remark-lint-no-multiple-toplevel-headings": "^4.0.1",
|
|
482
|
-
"remark-lint-no-paragraph-content-indent": "^5.0.1",
|
|
483
|
-
"remark-lint-no-reference-like-url": "^4.0.1",
|
|
484
|
-
"remark-lint-no-shell-dollars": "^4.0.1",
|
|
485
|
-
"remark-lint-no-shortcut-reference-image": "^4.0.1",
|
|
486
|
-
"remark-lint-no-shortcut-reference-link": "^4.0.1",
|
|
487
|
-
"remark-lint-no-table-indentation": "^5.0.1",
|
|
488
|
-
"remark-lint-no-tabs": "^4.0.1",
|
|
489
|
-
"remark-lint-no-undefined-references": "^5.0.2",
|
|
490
|
-
"remark-lint-no-unneeded-full-reference-image": "^4.0.1",
|
|
491
|
-
"remark-lint-no-unneeded-full-reference-link": "^4.0.1",
|
|
492
|
-
"remark-lint-no-unused-definitions": "^4.0.2",
|
|
493
|
-
"remark-lint-ordered-list-marker-style": "^4.0.1",
|
|
494
|
-
"remark-lint-ordered-list-marker-value": "^4.0.1",
|
|
495
|
-
"remark-lint-rule-style": "^4.0.1",
|
|
496
|
-
"remark-lint-strikethrough-marker": "^3.0.1",
|
|
497
|
-
"remark-lint-strong-marker": "^4.0.1",
|
|
498
|
-
"remark-lint-table-cell-padding": "^5.1.1",
|
|
499
|
-
"remark-lint-table-pipe-alignment": "^4.1.1",
|
|
500
|
-
"remark-lint-table-pipes": "^5.0.1",
|
|
501
|
-
"remark-lint-unordered-list-marker-style": "^4.0.1",
|
|
502
|
-
"remark-lint-write-good": "^1.2.0",
|
|
503
|
-
"remark-math": "^6.0.0",
|
|
504
|
-
"remark-preset-lint-consistent": "^6.0.1",
|
|
505
|
-
"remark-preset-lint-markdown-style-guide": "^6.0.1",
|
|
506
|
-
"remark-preset-lint-recommended": "^7.0.1",
|
|
507
|
-
"remark-preset-prettier": "^2.0.2",
|
|
508
|
-
"remark-toc": "^9.0.0",
|
|
509
|
-
"remark-validate-links": "^13.1.0",
|
|
510
|
-
"remark-wiki-link": "^2.0.1",
|
|
297
|
+
"remark-config-nick2bad4u": "^1.0.1",
|
|
511
298
|
"rimraf": "^6.1.3",
|
|
512
|
-
"secretlint": "^12.
|
|
299
|
+
"secretlint": "^12.3.1",
|
|
300
|
+
"secretlint-config-nick2bad4u": "^1.0.3",
|
|
513
301
|
"sloc": "^0.3.2",
|
|
514
302
|
"sort-package-json": "^3.6.1",
|
|
515
|
-
"stylelint": "^17.
|
|
516
|
-
"stylelint-
|
|
517
|
-
"stylelint-checkstyle-formatter": "^0.1.2",
|
|
518
|
-
"stylelint-codeframe-formatter": "^1.2.0",
|
|
519
|
-
"stylelint-config-alphabetical-order": "^2.0.0",
|
|
520
|
-
"stylelint-config-idiomatic-order": "^10.0.0",
|
|
521
|
-
"stylelint-config-inspector": "^2.1.2",
|
|
522
|
-
"stylelint-config-recess-order": "^7.7.0",
|
|
523
|
-
"stylelint-config-recommended": "^18.0.0",
|
|
524
|
-
"stylelint-config-sass-guidelines": "^13.0.0",
|
|
525
|
-
"stylelint-config-standard": "^40.0.0",
|
|
526
|
-
"stylelint-config-standard-scss": "^17.0.0",
|
|
527
|
-
"stylelint-config-tailwindcss": "^1.0.1",
|
|
528
|
-
"stylelint-declaration-block-no-ignored-properties": "^3.0.0",
|
|
529
|
-
"stylelint-declaration-strict-value": "^1.11.1",
|
|
530
|
-
"stylelint-define-config": "^17.8.0",
|
|
531
|
-
"stylelint-find-new-rules": "^6.0.0",
|
|
532
|
-
"stylelint-formatter-gitlab-code-quality-report": "^1.1.0",
|
|
533
|
-
"stylelint-formatter-pretty": "^4.0.1",
|
|
534
|
-
"stylelint-gamut": "^2.0.0",
|
|
535
|
-
"stylelint-group-selectors": "^1.0.10",
|
|
536
|
-
"stylelint-high-performance-animation": "^2.0.0",
|
|
537
|
-
"stylelint-media-use-custom-media": "^4.1.0",
|
|
538
|
-
"stylelint-no-browser-hacks": "^2.0.0",
|
|
539
|
-
"stylelint-no-indistinguishable-colors": "^2.3.1",
|
|
540
|
-
"stylelint-no-restricted-syntax": "^2.2.1",
|
|
541
|
-
"stylelint-no-unresolved-module": "^2.5.2",
|
|
542
|
-
"stylelint-no-unsupported-browser-features": "^8.1.1",
|
|
543
|
-
"stylelint-order": "^8.1.1",
|
|
544
|
-
"stylelint-plugin-defensive-css": "^2.9.1",
|
|
545
|
-
"stylelint-plugin-docusaurus": "^1.0.3",
|
|
546
|
-
"stylelint-plugin-logical-css": "^2.1.0",
|
|
547
|
-
"stylelint-plugin-use-baseline": "^1.4.1",
|
|
548
|
-
"stylelint-prettier": "^5.0.3",
|
|
549
|
-
"stylelint-react-native": "^2.7.0",
|
|
550
|
-
"stylelint-scales": "^5.0.0",
|
|
551
|
-
"stylelint-selector-bem-pattern": "^4.0.1",
|
|
552
|
-
"stylelint-use-nesting": "^6.0.2",
|
|
553
|
-
"stylelint-value-no-unknown-custom-properties": "^6.1.1",
|
|
554
|
-
"toml-eslint-parser": "^1.0.3",
|
|
303
|
+
"stylelint": "^17.10.0",
|
|
304
|
+
"stylelint-config-nick2bad4u": "^1.0.5",
|
|
555
305
|
"ts-unused-exports": "^11.0.1",
|
|
556
306
|
"typedoc": "^0.28.19",
|
|
557
307
|
"typescript": "^6.0.3",
|
|
558
|
-
"typescript-eslint": "^8.59.
|
|
308
|
+
"typescript-eslint": "^8.59.1",
|
|
559
309
|
"typesync": "^0.14.3",
|
|
560
310
|
"vfile": "^6.0.3",
|
|
561
|
-
"vite": "^8.0.
|
|
311
|
+
"vite": "^8.0.10",
|
|
562
312
|
"vite-tsconfig-paths": "^6.1.1",
|
|
563
313
|
"vitest": "^4.1.5",
|
|
564
|
-
"yaml-eslint-parser": "^2.0.0",
|
|
565
314
|
"yamllint-js": "^0.2.4"
|
|
566
315
|
},
|
|
567
316
|
"peerDependencies": {
|
|
568
|
-
"eslint": "^9.0.0 || ^10.
|
|
317
|
+
"eslint": "^9.0.0 || ^10.3.0",
|
|
569
318
|
"typescript": ">=5.0.0"
|
|
570
319
|
},
|
|
571
320
|
"packageManager": "npm@11.13.0",
|