eslint-plugin-crisp 1.1.7 → 1.1.8
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 +1 -0
- package/package.json +1 -1
- package/recommended-vue.js +1 -0
- package/recommended.js +1 -0
package/README.md
CHANGED
|
@@ -147,6 +147,7 @@ Each item has emojis denoting:
|
|
|
147
147
|
| [jsdoc/no-undefined-types](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-undefined-types.md) | Rule is **disabled** to allow some undefined types | 🟠 |
|
|
148
148
|
| [jsdoc/require-description](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-description.md) | Requires all functions to have a description in their JSDoc | | 🟢 |
|
|
149
149
|
| [jsdoc/require-param-description](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-description.md) | Rule is **disabled** as we don't write any description for `@param` tags | 🟠 | 🟢 |
|
|
150
|
+
| [jsdoc/require-property-description](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-param-description.md) | Rule is **disabled** as we don't write any description for `@property` tags | 🟠 | 🟢 |
|
|
150
151
|
| [jsdoc/require-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-jsdoc.md) | Enforces JSDoc comments on functions and classes | 🟠 | 🟢 |
|
|
151
152
|
| [jsdoc/sort-tags](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/sort-tags.md) | Enforces specific order for tags | 🟠 | 🟢 |
|
|
152
153
|
|
package/package.json
CHANGED
package/recommended-vue.js
CHANGED
|
@@ -193,6 +193,7 @@ export default function configRecommendedVue(pluginCrisp) {
|
|
|
193
193
|
// General JSDoc rules
|
|
194
194
|
"jsdoc/require-description": "error",
|
|
195
195
|
"jsdoc/require-param-description": "off",
|
|
196
|
+
"jsdoc/require-property-description": "off",
|
|
196
197
|
"jsdoc/require-jsdoc": [
|
|
197
198
|
"error",
|
|
198
199
|
|