eslint-plugin-sdl-2 1.2.0 → 1.2.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/dist/plugin.cjs +58 -242
- package/dist/plugin.cjs.map +2 -2
- package/dist/plugin.d.ts.map +1 -1
- package/dist/plugin.js +28 -22
- package/dist/plugin.js.map +1 -1
- package/package.json +30 -220
package/dist/plugin.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAO7C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAKtE,KAAK,SAAS,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AACzC,KAAK,cAAc,GAAG,SAAS,SAAS,EAAE,CAAC;AAG3C,KAAK,oBAAoB,GAAG,MAAM,CAAC,MAAM,GAAG;IACxC,QAAQ,CAAC,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,aAAa,EAAE,cAAc,CAAC,CAAC,CAAC;CACrE,CAAC;
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAO7C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kCAAkC,CAAC;AAKtE,KAAK,SAAS,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;AACzC,KAAK,cAAc,GAAG,SAAS,SAAS,EAAE,CAAC;AAG3C,KAAK,oBAAoB,GAAG,MAAM,CAAC,MAAM,GAAG;IACxC,QAAQ,CAAC,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,aAAa,EAAE,cAAc,CAAC,CAAC,CAAC;CACrE,CAAC;AA6PF,0EAA0E;AAC1E,QAAA,MAAM,SAAS,EAAE,oBAIhB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
package/dist/plugin.js
CHANGED
|
@@ -8,8 +8,12 @@ const typeScriptEslintPlugin = typeScriptPlugin;
|
|
|
8
8
|
const nodeEslintPlugin = nodePlugin;
|
|
9
9
|
const securityEslintPlugin = securityPlugin;
|
|
10
10
|
const typeScriptFiles = ["**/*.{ts,tsx,mts,cts}"];
|
|
11
|
+
const createNamedConfig = (name, config = {}) => ({
|
|
12
|
+
...config,
|
|
13
|
+
name,
|
|
14
|
+
});
|
|
11
15
|
const createAngularConfig = (plugin) => [
|
|
12
|
-
{
|
|
16
|
+
createNamedConfig("SDL Angular Security", {
|
|
13
17
|
plugins: {
|
|
14
18
|
sdl: plugin,
|
|
15
19
|
},
|
|
@@ -19,10 +23,10 @@ const createAngularConfig = (plugin) => [
|
|
|
19
23
|
"sdl/no-angular-innerhtml-binding": "error",
|
|
20
24
|
"sdl/no-angular-sanitization-trusted-urls": "error",
|
|
21
25
|
},
|
|
22
|
-
},
|
|
26
|
+
}),
|
|
23
27
|
];
|
|
24
28
|
const createAngularJsConfig = (plugin) => [
|
|
25
|
-
{
|
|
29
|
+
createNamedConfig("SDL AngularJS Security", {
|
|
26
30
|
plugins: {
|
|
27
31
|
sdl: plugin,
|
|
28
32
|
},
|
|
@@ -33,10 +37,10 @@ const createAngularJsConfig = (plugin) => [
|
|
|
33
37
|
"sdl/no-angularjs-sanitization-whitelist": "error",
|
|
34
38
|
"sdl/no-angularjs-sce-resource-url-wildcard": "error",
|
|
35
39
|
},
|
|
36
|
-
},
|
|
40
|
+
}),
|
|
37
41
|
];
|
|
38
42
|
const createCommonConfig = (plugin) => [
|
|
39
|
-
{
|
|
43
|
+
createNamedConfig("SDL Common Web Security", {
|
|
40
44
|
plugins: {
|
|
41
45
|
sdl: plugin,
|
|
42
46
|
},
|
|
@@ -74,10 +78,10 @@ const createCommonConfig = (plugin) => [
|
|
|
74
78
|
"sdl/no-worker-blob-url": "error",
|
|
75
79
|
"sdl/no-worker-data-url": "error",
|
|
76
80
|
},
|
|
77
|
-
},
|
|
81
|
+
}),
|
|
78
82
|
];
|
|
79
83
|
const createElectronConfig = (plugin) => [
|
|
80
|
-
{
|
|
84
|
+
createNamedConfig("SDL Electron Security", {
|
|
81
85
|
plugins: {
|
|
82
86
|
sdl: plugin,
|
|
83
87
|
},
|
|
@@ -103,18 +107,18 @@ const createElectronConfig = (plugin) => [
|
|
|
103
107
|
"sdl/no-electron-webview-insecure-webpreferences": "error",
|
|
104
108
|
"sdl/no-electron-webview-node-integration": "error",
|
|
105
109
|
},
|
|
106
|
-
},
|
|
110
|
+
}),
|
|
107
111
|
];
|
|
108
112
|
const createNodeConfig = (plugin) => [
|
|
109
|
-
{
|
|
113
|
+
createNamedConfig("SDL Node.js Runtime Safety", {
|
|
110
114
|
plugins: {
|
|
111
115
|
n: nodeEslintPlugin,
|
|
112
116
|
},
|
|
113
117
|
rules: {
|
|
114
118
|
"n/no-deprecated-api": "error",
|
|
115
119
|
},
|
|
116
|
-
},
|
|
117
|
-
{
|
|
120
|
+
}),
|
|
121
|
+
createNamedConfig("SDL Node.js Security", {
|
|
118
122
|
plugins: {
|
|
119
123
|
sdl: plugin,
|
|
120
124
|
},
|
|
@@ -132,10 +136,10 @@ const createNodeConfig = (plugin) => [
|
|
|
132
136
|
"sdl/no-node-worker-threads-eval": "error",
|
|
133
137
|
"sdl/no-unsafe-alloc": "error",
|
|
134
138
|
},
|
|
135
|
-
},
|
|
139
|
+
}),
|
|
136
140
|
];
|
|
137
141
|
const createReactConfig = (plugin) => [
|
|
138
|
-
{
|
|
142
|
+
createNamedConfig("SDL React JSX Support", {
|
|
139
143
|
languageOptions: {
|
|
140
144
|
parserOptions: {
|
|
141
145
|
ecmaFeatures: {
|
|
@@ -143,23 +147,23 @@ const createReactConfig = (plugin) => [
|
|
|
143
147
|
},
|
|
144
148
|
},
|
|
145
149
|
},
|
|
146
|
-
},
|
|
147
|
-
{
|
|
150
|
+
}),
|
|
151
|
+
createNamedConfig("SDL React Security", {
|
|
148
152
|
plugins: {
|
|
149
153
|
sdl: plugin,
|
|
150
154
|
},
|
|
151
|
-
},
|
|
155
|
+
}),
|
|
152
156
|
];
|
|
153
157
|
const createTypeScriptConfig = (plugin) => [
|
|
154
|
-
{
|
|
158
|
+
createNamedConfig("SDL TypeScript Parser Support", {
|
|
155
159
|
languageOptions: {
|
|
156
160
|
parserOptions: {
|
|
157
161
|
ecmaVersion: "latest",
|
|
158
162
|
sourceType: "module",
|
|
159
163
|
},
|
|
160
164
|
},
|
|
161
|
-
},
|
|
162
|
-
{
|
|
165
|
+
}),
|
|
166
|
+
createNamedConfig("SDL TypeScript Security", {
|
|
163
167
|
files: [...typeScriptFiles],
|
|
164
168
|
languageOptions: {
|
|
165
169
|
parser: typeScriptParser,
|
|
@@ -182,9 +186,10 @@ const createTypeScriptConfig = (plugin) => [
|
|
|
182
186
|
"sdl/no-trusted-types-policy-pass-through": "error",
|
|
183
187
|
"sdl/no-unsafe-cast-to-trusted-types": "error",
|
|
184
188
|
},
|
|
185
|
-
},
|
|
189
|
+
}),
|
|
186
190
|
];
|
|
187
191
|
const createRequiredConfig = (configs) => [
|
|
192
|
+
createNamedConfig("SDL Required Security Baseline"),
|
|
188
193
|
...configs.angular,
|
|
189
194
|
...configs.angularjs,
|
|
190
195
|
...configs.common,
|
|
@@ -193,13 +198,14 @@ const createRequiredConfig = (configs) => [
|
|
|
193
198
|
...configs.react,
|
|
194
199
|
];
|
|
195
200
|
const createRecommendedConfig = (configs) => [
|
|
201
|
+
createNamedConfig("SDL Recommended Security Baseline"),
|
|
196
202
|
...configs.required,
|
|
197
203
|
...configs.typescript,
|
|
198
|
-
{
|
|
204
|
+
createNamedConfig("SDL Recommended Security Plugins", {
|
|
199
205
|
plugins: {
|
|
200
206
|
security: securityEslintPlugin,
|
|
201
207
|
},
|
|
202
|
-
},
|
|
208
|
+
}),
|
|
203
209
|
];
|
|
204
210
|
const packageJsonVersion = typeof packageJson.version === "string" && packageJson.version.length > 0
|
|
205
211
|
? packageJson.version
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAEA,OAAO,gBAAgB,MAAM,kCAAkC,CAAC;AAChE,OAAO,gBAAgB,MAAM,2BAA2B,CAAC;AACzD,OAAO,UAAU,MAAM,iBAAiB,CAAC;AACzC,OAAO,cAAc,MAAM,wBAAwB,CAAC;AAIpD,OAAO,WAAW,MAAM,iBAAiB,CAAC,OAAO,IAAI,EAAE,MAAM,EAAE,CAAC;AAChE,OAAO,QAAQ,MAAM,+BAA+B,CAAC;AAUrD,MAAM,sBAAsB,GAAG,gBAA4C,CAAC;AAC5E,MAAM,gBAAgB,GAAG,UAAsC,CAAC;AAChE,MAAM,oBAAoB,GAAG,cAA0C,CAAC;AAExE,MAAM,eAAe,GAAG,CAAC,uBAAuB,CAAC,CAAC;AAElD,MAAM,mBAAmB,GAAG,CAAC,MAAiB,EAAkB,EAAE,CAAC;IAC/D;
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"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"}
|
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.2.
|
|
4
|
+
"version": "1.2.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "ESLint plugin providing SDL-focused security and platform hardening rules.",
|
|
7
7
|
"keywords": [
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"build": "tsc -p tsconfig.build.json && npm run build:types:cjs && npm run build:cjs",
|
|
79
79
|
"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;\"",
|
|
80
80
|
"build:clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
81
|
-
"build:eslint-inspector": "npx -y @eslint/config-inspector@
|
|
81
|
+
"build:eslint-inspector": "npx -y @eslint/config-inspector@latest build --outDir \"docs/docusaurus/static/eslint-inspector\" --base \"/eslint-plugin-SDL-2/eslint-inspector/\"",
|
|
82
82
|
"build:eslint-inspector:local": "npx @eslint/config-inspector",
|
|
83
83
|
"build:stylelint-inspector": "npx -y stylelint-config-inspector@latest build --outDir \"docs/docusaurus/static/stylelint-inspector\" --base \"/eslint-plugin-SDL-2/stylelint-inspector/\"",
|
|
84
84
|
"build:stylelint-inspector:local": "npx stylelint-config-inspector@latest",
|
|
@@ -162,7 +162,7 @@
|
|
|
162
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!\"",
|
|
163
163
|
"lint:remark": "remark --rc-path .remarkrc.mjs --silently-ignore --ignore-path .remarkignore --frail \"*.{md,mdx}\" \"docs/**/*.{md,mdx}\" --quiet",
|
|
164
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",
|
|
165
|
-
"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/*\"",
|
|
166
166
|
"lint:secrets": "detect-secrets scan",
|
|
167
167
|
"lint:unused": "npm run knip -- --include unlisted,unresolved,duplicates",
|
|
168
168
|
"lint:unused-deps": "depcheck --ignores='@types/*,@testing-library/*,@vitest/*'",
|
|
@@ -218,11 +218,11 @@
|
|
|
218
218
|
},
|
|
219
219
|
"dependencies": {
|
|
220
220
|
"@types/eslint-plugin-security": "^3.0.1",
|
|
221
|
-
"@typescript-eslint/eslint-plugin": "^8.59.
|
|
222
|
-
"@typescript-eslint/parser": "^8.59.
|
|
223
|
-
"@typescript-eslint/type-utils": "^8.59.
|
|
224
|
-
"@typescript-eslint/utils": "^8.59.
|
|
225
|
-
"eslint-plugin-n": "^
|
|
221
|
+
"@typescript-eslint/eslint-plugin": "^8.59.2",
|
|
222
|
+
"@typescript-eslint/parser": "^8.59.2",
|
|
223
|
+
"@typescript-eslint/type-utils": "^8.59.2",
|
|
224
|
+
"@typescript-eslint/utils": "^8.59.2",
|
|
225
|
+
"eslint-plugin-n": "^18.0.1",
|
|
226
226
|
"ts-extras": "^1.0.0",
|
|
227
227
|
"type-fest": "^5.6.0"
|
|
228
228
|
},
|
|
@@ -230,264 +230,74 @@
|
|
|
230
230
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
231
231
|
"@csstools/stylelint-formatter-github": "^2.0.0",
|
|
232
232
|
"@double-great/remark-lint-alt-text": "^1.1.1",
|
|
233
|
-
"@
|
|
234
|
-
"@eslint/
|
|
235
|
-
"@eslint/config-inspector": "^2.0.0",
|
|
233
|
+
"@eslint/compat": "^2.1.0",
|
|
234
|
+
"@eslint/config-inspector": "^2.0.1",
|
|
236
235
|
"@microsoft/tsdoc-config": "^0.18.1",
|
|
237
|
-
"@secretlint/secretlint-rule-anthropic": "^12.3.1",
|
|
238
|
-
"@secretlint/secretlint-rule-aws": "^12.3.1",
|
|
239
|
-
"@secretlint/secretlint-rule-database-connection-string": "^12.3.1",
|
|
240
|
-
"@secretlint/secretlint-rule-gcp": "^12.3.1",
|
|
241
|
-
"@secretlint/secretlint-rule-github": "^12.3.1",
|
|
242
|
-
"@secretlint/secretlint-rule-no-dotenv": "^12.3.1",
|
|
243
|
-
"@secretlint/secretlint-rule-no-homedir": "^12.3.1",
|
|
244
|
-
"@secretlint/secretlint-rule-npm": "^12.3.1",
|
|
245
|
-
"@secretlint/secretlint-rule-openai": "^12.3.1",
|
|
246
|
-
"@secretlint/secretlint-rule-pattern": "^12.3.1",
|
|
247
|
-
"@secretlint/secretlint-rule-preset-recommend": "^12.3.1",
|
|
248
|
-
"@secretlint/secretlint-rule-privatekey": "^12.3.1",
|
|
249
|
-
"@secretlint/secretlint-rule-secp256k1-privatekey": "^12.3.1",
|
|
250
|
-
"@secretlint/types": "^12.3.1",
|
|
251
|
-
"@softonus/prettier-plugin-duplicate-remover": "^1.1.2",
|
|
252
236
|
"@stryker-ignorer/console-all": "^0.3.2",
|
|
253
237
|
"@stryker-mutator/core": "^9.6.1",
|
|
254
238
|
"@stryker-mutator/typescript-checker": "^9.6.1",
|
|
255
239
|
"@stryker-mutator/vitest-runner": "^9.6.1",
|
|
256
|
-
"@stylelint-types/stylelint-order": "^7.0.1",
|
|
257
|
-
"@stylelint-types/stylelint-stylistic": "^5.0.0",
|
|
258
|
-
"@stylistic/stylelint-plugin": "^5.1.0",
|
|
259
240
|
"@types/htmlhint": "^1.1.5",
|
|
260
241
|
"@types/madge": "^5.0.3",
|
|
261
|
-
"@types/node": "^25.6.
|
|
262
|
-
"@types/postcss-clamp": "^4.1.3",
|
|
263
|
-
"@types/postcss-flexbugs-fixes": "^5.0.3",
|
|
264
|
-
"@types/postcss-html": "^1.5.3",
|
|
265
|
-
"@types/postcss-import": "^14.0.3",
|
|
266
|
-
"@types/postcss-inline-svg": "^5.0.4",
|
|
267
|
-
"@types/postcss-normalize": "^9.0.4",
|
|
268
|
-
"@types/postcss-reporter": "^7.0.5",
|
|
242
|
+
"@types/node": "^25.6.2",
|
|
269
243
|
"@types/sloc": "^0.2.3",
|
|
270
|
-
"@typescript-eslint/rule-tester": "^8.59.
|
|
244
|
+
"@typescript-eslint/rule-tester": "^8.59.2",
|
|
271
245
|
"@vitest/coverage-v8": "^4.1.5",
|
|
272
246
|
"@vitest/ui": "^4.1.5",
|
|
273
247
|
"actionlint": "^2.0.6",
|
|
274
248
|
"all-contributors-cli": "^6.26.1",
|
|
275
249
|
"cognitive-complexity-ts": "^0.8.1",
|
|
276
|
-
"commitlint": "^
|
|
250
|
+
"commitlint": "^21.0.0",
|
|
277
251
|
"commitlint-config-gitmoji": "^2.3.1",
|
|
278
252
|
"cross-env": "^10.1.0",
|
|
279
253
|
"depcheck": "^1.4.7",
|
|
280
254
|
"detect-secrets": "^1.0.6",
|
|
281
|
-
"eslint": "^10.
|
|
282
|
-
"eslint-config-nick2bad4u": "^1.0.
|
|
255
|
+
"eslint": "^10.3.0",
|
|
256
|
+
"eslint-config-nick2bad4u": "^1.0.12",
|
|
283
257
|
"eslint-formatter-unix": "^9.0.1",
|
|
284
258
|
"eslint-rule-benchmark": "^0.8.0",
|
|
285
259
|
"fast-check": "^4.7.0",
|
|
286
260
|
"git-cliff": "^2.13.1",
|
|
287
261
|
"gitleaks-secret-scanner": "^2.1.1",
|
|
288
262
|
"htmlhint": "^1.9.2",
|
|
289
|
-
"jscpd": "^4.0
|
|
290
|
-
"knip": "^6.
|
|
263
|
+
"jscpd": "^4.1.0",
|
|
264
|
+
"knip": "^6.12.2",
|
|
291
265
|
"leasot": "^14.4.0",
|
|
292
266
|
"madge": "^8.0.0",
|
|
293
267
|
"markdown-link-check": "^3.14.2",
|
|
294
|
-
"npm-check-updates": "^22.
|
|
295
|
-
"npm-package-json-lint": "^10.
|
|
268
|
+
"npm-check-updates": "^22.1.1",
|
|
269
|
+
"npm-package-json-lint": "^10.4.0",
|
|
296
270
|
"picocolors": "^1.1.1",
|
|
297
|
-
"postcss": "^8.5.13",
|
|
298
|
-
"postcss-assets": "^6.0.0",
|
|
299
|
-
"postcss-clamp": "^4.1.0",
|
|
300
|
-
"postcss-combine-duplicated-selectors": "^10.0.3",
|
|
301
|
-
"postcss-flexbugs-fixes": "^5.0.2",
|
|
302
|
-
"postcss-html": "^1.8.1",
|
|
303
|
-
"postcss-import": "^16.1.1",
|
|
304
|
-
"postcss-inline-svg": "^6.0.0",
|
|
305
|
-
"postcss-logical": "^9.0.0",
|
|
306
|
-
"postcss-normalize": "^13.0.1",
|
|
307
|
-
"postcss-reporter": "^7.1.0",
|
|
308
|
-
"postcss-round-subpixels": "^2.0.0",
|
|
309
|
-
"postcss-scss": "^4.0.9",
|
|
310
|
-
"postcss-sort-media-queries": "^6.5.0",
|
|
311
|
-
"postcss-styled-jsx": "^1.0.1",
|
|
312
|
-
"postcss-styled-syntax": "^0.7.1",
|
|
313
|
-
"postcss-viewport-height-correction": "^1.1.1",
|
|
314
271
|
"prettier": "^3.8.3",
|
|
315
|
-
"prettier-
|
|
316
|
-
"
|
|
317
|
-
"prettier-plugin-jsdoc": "^1.8.0",
|
|
318
|
-
"prettier-plugin-jsdoc-type": "^0.2.0",
|
|
319
|
-
"prettier-plugin-merge": "^0.10.1",
|
|
320
|
-
"prettier-plugin-multiline-arrays": "^4.1.7",
|
|
321
|
-
"prettier-plugin-packagejson": "^3.0.2",
|
|
322
|
-
"prettier-plugin-properties": "^0.3.1",
|
|
323
|
-
"prettier-plugin-sort-json": "^4.2.0",
|
|
324
|
-
"prettier-plugin-toml": "^2.0.6",
|
|
325
|
-
"publint": "^0.3.18",
|
|
272
|
+
"prettier-config-nick2bad4u": "^1.0.10",
|
|
273
|
+
"publint": "^0.3.20",
|
|
326
274
|
"rehype-katex": "^7.0.1",
|
|
327
275
|
"remark": "^15.0.1",
|
|
328
276
|
"remark-cli": "^12.0.1",
|
|
329
|
-
"remark-
|
|
330
|
-
"remark-frontmatter": "^5.0.0",
|
|
331
|
-
"remark-gfm": "^4.0.1",
|
|
332
|
-
"remark-ignore": "^3.0.0",
|
|
333
|
-
"remark-inline-links": "^7.0.0",
|
|
334
|
-
"remark-lint": "^10.0.1",
|
|
335
|
-
"remark-lint-blockquote-indentation": "^4.0.1",
|
|
336
|
-
"remark-lint-check-toc": "^1.0.0",
|
|
337
|
-
"remark-lint-checkbox-character-style": "^5.0.1",
|
|
338
|
-
"remark-lint-checkbox-content-indent": "^5.0.1",
|
|
339
|
-
"remark-lint-code-block-split-list": "^1.0.0",
|
|
340
|
-
"remark-lint-code-block-style": "^4.0.1",
|
|
341
|
-
"remark-lint-correct-media-syntax": "^1.0.1",
|
|
342
|
-
"remark-lint-definition-case": "^4.0.1",
|
|
343
|
-
"remark-lint-definition-sort": "^1.0.1",
|
|
344
|
-
"remark-lint-definition-spacing": "^4.0.1",
|
|
345
|
-
"remark-lint-directive-attribute-sort": "^1.0.1",
|
|
346
|
-
"remark-lint-directive-collapsed-attribute": "^1.0.1",
|
|
347
|
-
"remark-lint-directive-quote-style": "^1.0.1",
|
|
348
|
-
"remark-lint-directive-shortcut-attribute": "^1.0.1",
|
|
349
|
-
"remark-lint-directive-unique-attribute-name": "^1.0.1",
|
|
350
|
-
"remark-lint-emphasis-marker": "^4.0.1",
|
|
351
|
-
"remark-lint-fenced-code-flag": "^4.2.0",
|
|
352
|
-
"remark-lint-fenced-code-flag-case": "^3.0.0",
|
|
353
|
-
"remark-lint-fenced-code-marker": "^4.0.1",
|
|
354
|
-
"remark-lint-file-extension": "^3.0.1",
|
|
355
|
-
"remark-lint-final-definition": "^4.0.2",
|
|
356
|
-
"remark-lint-final-newline": "^3.0.1",
|
|
357
|
-
"remark-lint-first-heading-level": "^4.0.1",
|
|
358
|
-
"remark-lint-frontmatter-schema": "^3.15.4",
|
|
359
|
-
"remark-lint-hard-break-spaces": "^4.1.1",
|
|
360
|
-
"remark-lint-heading-capitalization": "^1.3.0",
|
|
361
|
-
"remark-lint-heading-increment": "^4.0.1",
|
|
362
|
-
"remark-lint-heading-style": "^4.0.1",
|
|
363
|
-
"remark-lint-heading-whitespace": "^1.0.0",
|
|
364
|
-
"remark-lint-linebreak-style": "^4.0.1",
|
|
365
|
-
"remark-lint-link-title-style": "^4.0.1",
|
|
366
|
-
"remark-lint-list-item-bullet-indent": "^5.0.1",
|
|
367
|
-
"remark-lint-list-item-content-indent": "^4.0.1",
|
|
368
|
-
"remark-lint-list-item-indent": "^4.0.1",
|
|
369
|
-
"remark-lint-list-item-spacing": "^5.0.1",
|
|
370
|
-
"remark-lint-maximum-heading-length": "^4.1.1",
|
|
371
|
-
"remark-lint-maximum-line-length": "^4.1.1",
|
|
372
|
-
"remark-lint-mdx-jsx-attribute-sort": "^1.0.1",
|
|
373
|
-
"remark-lint-mdx-jsx-no-void-children": "^1.0.1",
|
|
374
|
-
"remark-lint-mdx-jsx-quote-style": "^1.0.1",
|
|
375
|
-
"remark-lint-mdx-jsx-self-close": "^1.0.1",
|
|
376
|
-
"remark-lint-mdx-jsx-shorthand-attribute": "^1.0.1",
|
|
377
|
-
"remark-lint-mdx-jsx-unique-attribute-name": "^1.0.1",
|
|
378
|
-
"remark-lint-media-style": "^1.0.1",
|
|
379
|
-
"remark-lint-no-blockquote-without-marker": "^6.0.1",
|
|
380
|
-
"remark-lint-no-consecutive-blank-lines": "^5.0.1",
|
|
381
|
-
"remark-lint-no-dead-urls": "^2.0.1",
|
|
382
|
-
"remark-lint-no-duplicate-defined-urls": "^3.0.1",
|
|
383
|
-
"remark-lint-no-duplicate-definitions": "^4.0.1",
|
|
384
|
-
"remark-lint-no-duplicate-headings": "^4.0.1",
|
|
385
|
-
"remark-lint-no-duplicate-headings-in-section": "^4.0.1",
|
|
386
|
-
"remark-lint-no-emphasis-as-heading": "^4.0.1",
|
|
387
|
-
"remark-lint-no-empty-sections": "^4.0.0",
|
|
388
|
-
"remark-lint-no-empty-url": "^4.0.1",
|
|
389
|
-
"remark-lint-no-file-name-articles": "^3.0.1",
|
|
390
|
-
"remark-lint-no-file-name-consecutive-dashes": "^3.0.1",
|
|
391
|
-
"remark-lint-no-file-name-irregular-characters": "^3.0.1",
|
|
392
|
-
"remark-lint-no-file-name-mixed-case": "^3.0.1",
|
|
393
|
-
"remark-lint-no-file-name-outer-dashes": "^3.0.1",
|
|
394
|
-
"remark-lint-no-heading-content-indent": "^5.0.1",
|
|
395
|
-
"remark-lint-no-heading-indent": "^5.0.1",
|
|
396
|
-
"remark-lint-no-heading-like-paragraph": "^4.0.1",
|
|
397
|
-
"remark-lint-no-heading-punctuation": "^4.0.1",
|
|
398
|
-
"remark-lint-no-hidden-table-cell": "^1.0.1",
|
|
399
|
-
"remark-lint-no-html": "^4.0.1",
|
|
400
|
-
"remark-lint-no-literal-urls": "^4.0.1",
|
|
401
|
-
"remark-lint-no-missing-blank-lines": "^4.0.1",
|
|
402
|
-
"remark-lint-no-multiple-toplevel-headings": "^4.0.1",
|
|
403
|
-
"remark-lint-no-paragraph-content-indent": "^5.0.1",
|
|
404
|
-
"remark-lint-no-reference-like-url": "^4.0.1",
|
|
405
|
-
"remark-lint-no-shell-dollars": "^4.0.1",
|
|
406
|
-
"remark-lint-no-shortcut-reference-image": "^4.0.1",
|
|
407
|
-
"remark-lint-no-shortcut-reference-link": "^4.0.1",
|
|
408
|
-
"remark-lint-no-table-indentation": "^5.0.1",
|
|
409
|
-
"remark-lint-no-tabs": "^4.0.1",
|
|
410
|
-
"remark-lint-no-undefined-references": "^5.0.2",
|
|
411
|
-
"remark-lint-no-unneeded-full-reference-image": "^4.0.1",
|
|
412
|
-
"remark-lint-no-unneeded-full-reference-link": "^4.0.1",
|
|
413
|
-
"remark-lint-no-unused-definitions": "^4.0.2",
|
|
414
|
-
"remark-lint-ordered-list-marker-style": "^4.0.1",
|
|
415
|
-
"remark-lint-ordered-list-marker-value": "^4.0.1",
|
|
416
|
-
"remark-lint-rule-style": "^4.0.1",
|
|
417
|
-
"remark-lint-strikethrough-marker": "^3.0.1",
|
|
418
|
-
"remark-lint-strong-marker": "^4.0.1",
|
|
419
|
-
"remark-lint-table-cell-padding": "^5.1.1",
|
|
420
|
-
"remark-lint-table-pipe-alignment": "^4.1.1",
|
|
421
|
-
"remark-lint-table-pipes": "^5.0.1",
|
|
422
|
-
"remark-lint-unordered-list-marker-style": "^4.0.1",
|
|
423
|
-
"remark-lint-write-good": "^1.2.0",
|
|
424
|
-
"remark-math": "^6.0.0",
|
|
425
|
-
"remark-preset-lint-consistent": "^6.0.1",
|
|
426
|
-
"remark-preset-lint-markdown-style-guide": "^6.0.1",
|
|
427
|
-
"remark-preset-lint-recommended": "^7.0.1",
|
|
428
|
-
"remark-preset-prettier": "^2.0.2",
|
|
429
|
-
"remark-toc": "^9.0.0",
|
|
430
|
-
"remark-validate-links": "^13.1.0",
|
|
431
|
-
"remark-wiki-link": "^2.0.1",
|
|
277
|
+
"remark-config-nick2bad4u": "^1.0.1",
|
|
432
278
|
"rimraf": "^6.1.3",
|
|
433
|
-
"secretlint": "^
|
|
279
|
+
"secretlint": "^13.0.0",
|
|
280
|
+
"secretlint-config-nick2bad4u": "^1.0.4",
|
|
434
281
|
"sloc": "^0.3.2",
|
|
435
282
|
"sort-package-json": "^3.6.1",
|
|
436
|
-
"stylelint": "^17.
|
|
437
|
-
"stylelint-
|
|
438
|
-
"stylelint-checkstyle-formatter": "^0.1.2",
|
|
439
|
-
"stylelint-codeframe-formatter": "^1.2.0",
|
|
440
|
-
"stylelint-config-alphabetical-order": "^2.0.0",
|
|
441
|
-
"stylelint-config-idiomatic-order": "^10.0.0",
|
|
442
|
-
"stylelint-config-inspector": "^2.1.2",
|
|
443
|
-
"stylelint-config-recess-order": "^7.7.0",
|
|
444
|
-
"stylelint-config-recommended": "^18.0.0",
|
|
445
|
-
"stylelint-config-sass-guidelines": "^13.0.0",
|
|
446
|
-
"stylelint-config-standard": "^40.0.0",
|
|
447
|
-
"stylelint-config-standard-scss": "^17.0.0",
|
|
448
|
-
"stylelint-config-tailwindcss": "^1.0.1",
|
|
449
|
-
"stylelint-declaration-block-no-ignored-properties": "^3.0.0",
|
|
450
|
-
"stylelint-declaration-strict-value": "^1.11.1",
|
|
451
|
-
"stylelint-define-config": "^17.9.0",
|
|
452
|
-
"stylelint-find-new-rules": "^6.0.0",
|
|
453
|
-
"stylelint-formatter-gitlab-code-quality-report": "^1.1.0",
|
|
454
|
-
"stylelint-formatter-pretty": "^4.0.1",
|
|
455
|
-
"stylelint-gamut": "^2.0.0",
|
|
456
|
-
"stylelint-group-selectors": "^1.0.10",
|
|
457
|
-
"stylelint-high-performance-animation": "^2.0.0",
|
|
458
|
-
"stylelint-media-use-custom-media": "^4.1.0",
|
|
459
|
-
"stylelint-no-browser-hacks": "^2.0.2",
|
|
460
|
-
"stylelint-no-indistinguishable-colors": "^2.3.1",
|
|
461
|
-
"stylelint-no-restricted-syntax": "^2.2.1",
|
|
462
|
-
"stylelint-no-unresolved-module": "^2.5.2",
|
|
463
|
-
"stylelint-no-unsupported-browser-features": "^8.1.1",
|
|
464
|
-
"stylelint-order": "^8.1.1",
|
|
465
|
-
"stylelint-plugin-defensive-css": "^2.9.1",
|
|
466
|
-
"stylelint-plugin-docusaurus": "^1.0.3",
|
|
467
|
-
"stylelint-plugin-logical-css": "^2.1.0",
|
|
468
|
-
"stylelint-plugin-use-baseline": "^1.4.1",
|
|
469
|
-
"stylelint-prettier": "^5.0.3",
|
|
470
|
-
"stylelint-react-native": "^2.7.0",
|
|
471
|
-
"stylelint-scales": "^5.0.0",
|
|
472
|
-
"stylelint-selector-bem-pattern": "^4.0.1",
|
|
473
|
-
"stylelint-use-nesting": "^6.0.2",
|
|
474
|
-
"stylelint-value-no-unknown-custom-properties": "^6.1.1",
|
|
283
|
+
"stylelint": "^17.11.0",
|
|
284
|
+
"stylelint-config-nick2bad4u": "^1.0.10",
|
|
475
285
|
"ts-unused-exports": "^11.0.1",
|
|
476
286
|
"typedoc": "^0.28.19",
|
|
477
287
|
"typescript": "^6.0.3",
|
|
478
|
-
"typescript-eslint": "^8.59.
|
|
288
|
+
"typescript-eslint": "^8.59.2",
|
|
479
289
|
"typesync": "^0.14.3",
|
|
480
290
|
"vfile": "^6.0.3",
|
|
481
|
-
"vite": "^8.0.
|
|
291
|
+
"vite": "^8.0.11",
|
|
482
292
|
"vite-tsconfig-paths": "^6.1.1",
|
|
483
293
|
"vitest": "^4.1.5",
|
|
484
294
|
"yamllint-js": "^0.2.4"
|
|
485
295
|
},
|
|
486
296
|
"peerDependencies": {
|
|
487
|
-
"eslint": "^9.0.0 || ^10.
|
|
297
|
+
"eslint": "^9.0.0 || ^10.3.0",
|
|
488
298
|
"typescript": ">=5.0.0"
|
|
489
299
|
},
|
|
490
|
-
"packageManager": "npm@11.
|
|
300
|
+
"packageManager": "npm@11.14.1",
|
|
491
301
|
"engines": {
|
|
492
302
|
"node": ">=20.19.0"
|
|
493
303
|
},
|