eslint-plugin-jsdoc 55.0.1 → 55.0.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/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ This is the currently recommended approach.
|
|
|
54
54
|
import {jsdoc} from 'eslint-plugin-jsdoc';
|
|
55
55
|
|
|
56
56
|
export default [
|
|
57
|
-
|
|
57
|
+
jsdoc({
|
|
58
58
|
config: 'flat/recommended',
|
|
59
59
|
})
|
|
60
60
|
];
|
|
@@ -66,7 +66,7 @@ Or with settings supplied:
|
|
|
66
66
|
import {jsdoc} from 'eslint-plugin-jsdoc';
|
|
67
67
|
|
|
68
68
|
export default [
|
|
69
|
-
|
|
69
|
+
jsdoc({
|
|
70
70
|
config: 'flat/recommended',
|
|
71
71
|
// Uncomment this if you wish your `settings` to overwrite the config's own settings;
|
|
72
72
|
// otherwise, the default behavior is to merge recursively
|
package/package.json
CHANGED