@depup/eslint-plugin-jsdoc 64.0.0-depup.0 → 64.0.2-depup.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.
- package/README.md +2 -2
- package/changes.json +1 -1
- package/dist/index.d.ts +14 -0
- package/package.json +5 -5
- package/src/index.js +19 -0
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ npm install @depup/eslint-plugin-jsdoc
|
|
|
13
13
|
|
|
14
14
|
| Field | Value |
|
|
15
15
|
|-------|-------|
|
|
16
|
-
| Original | [eslint-plugin-jsdoc](https://www.npmjs.com/package/eslint-plugin-jsdoc) @ 64.0.
|
|
17
|
-
| Processed | 2026-08-
|
|
16
|
+
| Original | [eslint-plugin-jsdoc](https://www.npmjs.com/package/eslint-plugin-jsdoc) @ 64.0.2 |
|
|
17
|
+
| Processed | 2026-08-09 |
|
|
18
18
|
| Smoke test | passed |
|
|
19
19
|
| Deps updated | 0 |
|
|
20
20
|
|
package/changes.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
export default index;
|
|
2
|
+
/** @type {import('eslint').ESLint.Plugin['rules']} */
|
|
3
|
+
export const rules: import("eslint").ESLint.Plugin["rules"];
|
|
4
|
+
/**
|
|
5
|
+
* @type {Record<
|
|
6
|
+
* FlatConfigNames,
|
|
7
|
+
* import('eslint').Linter.Config
|
|
8
|
+
* > &
|
|
9
|
+
* Record<
|
|
10
|
+
* "examples"|"default-expressions"|"examples-and-default-expressions",
|
|
11
|
+
* import('eslint').Linter.Config[]
|
|
12
|
+
* > &
|
|
13
|
+
* Record<"flat/recommended-mixed", import('eslint').Linter.Config[]>
|
|
14
|
+
} */
|
|
15
|
+
export const configs: Record<FlatConfigNames, import("eslint").Linter.Config> & Record<"examples" | "default-expressions" | "examples-and-default-expressions", import("eslint").Linter.Config[]> & Record<"flat/recommended-mixed", import("eslint").Linter.Config[]>;
|
|
2
16
|
/**
|
|
3
17
|
* @type {((
|
|
4
18
|
* cfg?: import('eslint').Linter.Config & {
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"url": "http://gajus.com"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@es-joy/jsdoccomment": "~0.93.
|
|
8
|
+
"@es-joy/jsdoccomment": "~0.93.2",
|
|
9
9
|
"@es-joy/resolve.exports": "1.2.0",
|
|
10
10
|
"are-docs-informative": "^0.1.1",
|
|
11
11
|
"comment-parser": "1.4.8",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"glob": "^13.0.6",
|
|
57
57
|
"globals": "^17.9.0",
|
|
58
58
|
"husky": "^9.1.7",
|
|
59
|
-
"jsdoc-type-pratt-parser": "^9.0.
|
|
59
|
+
"jsdoc-type-pratt-parser": "^9.0.1",
|
|
60
60
|
"json-schema": "^0.4.0",
|
|
61
61
|
"json-schema-to-typescript": "^15.0.4",
|
|
62
62
|
"lint-staged": "^17.3.0",
|
|
@@ -160,13 +160,13 @@
|
|
|
160
160
|
"test-cov": "TIMING=1 c8 --reporter text pnpm run test-no-cov",
|
|
161
161
|
"test-index": "pnpm run test-no-cov test/rules/index.js"
|
|
162
162
|
},
|
|
163
|
-
"version": "64.0.
|
|
163
|
+
"version": "64.0.2-depup.0",
|
|
164
164
|
"depup": {
|
|
165
165
|
"changes": {},
|
|
166
166
|
"depsUpdated": 0,
|
|
167
167
|
"originalPackage": "eslint-plugin-jsdoc",
|
|
168
|
-
"originalVersion": "64.0.
|
|
169
|
-
"processedAt": "2026-08-
|
|
168
|
+
"originalVersion": "64.0.2",
|
|
169
|
+
"processedAt": "2026-08-09T16:09:09.979Z",
|
|
170
170
|
"smokeTest": "passed"
|
|
171
171
|
}
|
|
172
172
|
}
|
package/src/index.js
CHANGED
|
@@ -762,6 +762,25 @@ index.configs['flat/recommended-mixed'] = [
|
|
|
762
762
|
|
|
763
763
|
export default index;
|
|
764
764
|
|
|
765
|
+
// Named exports (rather than only properties of the default export) so that
|
|
766
|
+
// Node's `require(esm)` interop exposes `.rules`/`.configs` directly, as
|
|
767
|
+
// needed by legacy `plugin:jsdoc/*` config resolution in CJS.
|
|
768
|
+
/** @type {import('eslint').ESLint.Plugin['rules']} */
|
|
769
|
+
export const rules = index.rules;
|
|
770
|
+
|
|
771
|
+
/**
|
|
772
|
+
* @type {Record<
|
|
773
|
+
* FlatConfigNames,
|
|
774
|
+
* import('eslint').Linter.Config
|
|
775
|
+
* > &
|
|
776
|
+
* Record<
|
|
777
|
+
* "examples"|"default-expressions"|"examples-and-default-expressions",
|
|
778
|
+
* import('eslint').Linter.Config[]
|
|
779
|
+
* > &
|
|
780
|
+
* Record<"flat/recommended-mixed", import('eslint').Linter.Config[]>
|
|
781
|
+
} */
|
|
782
|
+
export const configs = index.configs;
|
|
783
|
+
|
|
765
784
|
/**
|
|
766
785
|
* @type {((
|
|
767
786
|
* cfg?: import('eslint').Linter.Config & {
|