eslint-plugin-jsdoc 46.10.0 → 47.0.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/dist/index.d.ts +10 -0
- package/dist/index.d.ts.map +1 -0
- package/eslint.config.mjs +4 -4
- package/package.json +3 -3
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export default index;
|
|
2
|
+
/**
|
|
3
|
+
* @type {import('eslint').ESLint.Plugin & {
|
|
4
|
+
* configs: Record<string, import('eslint').ESLint.ConfigData|{}>
|
|
5
|
+
* }}
|
|
6
|
+
*/
|
|
7
|
+
declare const index: import('eslint').ESLint.Plugin & {
|
|
8
|
+
configs: Record<string, import('eslint').ESLint.ConfigData | {}>;
|
|
9
|
+
};
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":";AAsDA;;;;GAIG;AACH,qBAJU,OAAO,QAAQ,EAAE,MAAM,CAAC,MAAM,GAAG;IAC1C,OAAW,EAAE,OAAO,MAAM,EAAE,OAAO,QAAQ,EAAE,MAAM,CAAC,UAAU,GAAC,EAAE,CAAC,CAAA;CAC/D,CA2DF"}
|
package/eslint.config.mjs
CHANGED
|
@@ -4,9 +4,6 @@ import jsdoc from './dist/index.js';
|
|
|
4
4
|
// import canonicalJsdoc from 'eslint-config-canonical/jsdoc.js';
|
|
5
5
|
|
|
6
6
|
const common = {
|
|
7
|
-
linterOptions: {
|
|
8
|
-
reportUnusedDisableDirectives: 0
|
|
9
|
-
},
|
|
10
7
|
plugins: {
|
|
11
8
|
jsdoc
|
|
12
9
|
}
|
|
@@ -15,6 +12,10 @@ const common = {
|
|
|
15
12
|
export default [
|
|
16
13
|
// canonical,
|
|
17
14
|
// canonicalJsdoc,
|
|
15
|
+
{
|
|
16
|
+
// Must be by itself
|
|
17
|
+
ignores: ['dist/**/*.js', '.ignore/**/*.js'],
|
|
18
|
+
},
|
|
18
19
|
{
|
|
19
20
|
...common,
|
|
20
21
|
files: ['.ncurc.js'],
|
|
@@ -44,7 +45,6 @@ export default [
|
|
|
44
45
|
},
|
|
45
46
|
{
|
|
46
47
|
...common,
|
|
47
|
-
ignores: ['dist/**/*.js', '.ignore/**/*.js'],
|
|
48
48
|
languageOptions: {
|
|
49
49
|
globals: globals.node
|
|
50
50
|
},
|
package/package.json
CHANGED
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"typescript": "5.3.3"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
|
71
|
-
"node": ">=
|
|
71
|
+
"node": ">=16"
|
|
72
72
|
},
|
|
73
73
|
"keywords": [
|
|
74
74
|
"eslint",
|
|
@@ -133,7 +133,7 @@
|
|
|
133
133
|
"create-options": "node ./src/bin/generateOptions.mjs",
|
|
134
134
|
"install-offline": "pnpm install --prefer-offline --no-audit",
|
|
135
135
|
"lint": "npm run lint-arg -- .",
|
|
136
|
-
"lint-arg": "eslint --report-unused-disable-directives=
|
|
136
|
+
"lint-arg": "eslint --report-unused-disable-directives-severity=off",
|
|
137
137
|
"lint-fix": "npm run lint-arg -- --fix .",
|
|
138
138
|
"prepare": "husky install",
|
|
139
139
|
"test-no-cov": "cross-env BABEL_ENV=test mocha",
|
|
@@ -141,5 +141,5 @@
|
|
|
141
141
|
"test-cov": "cross-env TIMING=1 nyc --reporter text npm run test-no-cov",
|
|
142
142
|
"test-index": "npm run test-no-cov -- test/rules/index.js"
|
|
143
143
|
},
|
|
144
|
-
"version": "
|
|
144
|
+
"version": "47.0.0"
|
|
145
145
|
}
|