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.
Files changed (2) hide show
  1. package/README.md +2 -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
- ...jsdoc({
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
- ...jsdoc({
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
@@ -151,5 +151,5 @@
151
151
  "test-cov": "TIMING=1 c8 --reporter text pnpm run test-no-cov",
152
152
  "test-index": "pnpm run test-no-cov test/rules/index.js"
153
153
  },
154
- "version": "55.0.1"
154
+ "version": "55.0.2"
155
155
  }