eslint-plugin-tsdoc-require-2 1.0.3 → 1.0.4
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/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package.json",
|
|
3
3
|
"name": "eslint-plugin-tsdoc-require-2",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Require TSDoc comments for exported TypeScript declarations.",
|
|
7
7
|
"keywords": [
|
|
@@ -67,14 +67,16 @@
|
|
|
67
67
|
"lint:compat:eslint10": "npm run lint:compat:eslint -- --expect-eslint-major=10",
|
|
68
68
|
"lint:compat:eslint9": "npm run lint:compat:eslint -- --expect-eslint-major=9",
|
|
69
69
|
"lint:fix": "eslint --cache --cache-strategy content --cache-location .cache/.eslintcache --fix",
|
|
70
|
+
"lint:node-version-files": "node scripts/sync-node-version-files.mjs --check",
|
|
70
71
|
"lint:package:strict": "npm run lint:package-check:strict",
|
|
71
|
-
"lint:package-check": "publint && attw --pack .",
|
|
72
|
-
"lint:package-check:strict": "publint && attw --pack . --profile strict --config-path ./.attw.json",
|
|
72
|
+
"lint:package-check": "npm run lint:node-version-files && publint && attw --pack .",
|
|
73
|
+
"lint:package-check:strict": "npm run lint:node-version-files && publint && attw --pack . --profile strict --config-path ./.attw.json",
|
|
73
74
|
"lint:packagelintrc": "npmPkgJsonLint . --config .npmpackagejsonlintrc.json",
|
|
74
75
|
"lint:prettier": "prettier . --log-level warn --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --check",
|
|
75
76
|
"lint:prettier:fix": "prettier . --log-level warn --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --write",
|
|
76
77
|
"lint:release": "npm run release:check",
|
|
77
78
|
"release:check": "npm run clean && npm run build && npm run typecheck && npm run lint:fix && npm run lint:prettier:fix && npm run test",
|
|
79
|
+
"sync:node-version-files": "node scripts/sync-node-version-files.mjs",
|
|
78
80
|
"sync:readme": "npm run sync:readme:rules-table && npm run sync:readme:presets-matrix",
|
|
79
81
|
"sync:readme:check": "npm run sync:readme:rules-table:check && npm run sync:readme:presets-matrix:check",
|
|
80
82
|
"sync:readme:presets-matrix": "node ./scripts/sync-presets-rules-matrix.mjs",
|