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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-crisp",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Custom ESLint Rules for Crisp",
5
5
  "author": "Crisp IM SAS",
6
6
  "main": "index.js",
@@ -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
 
package/recommended.js CHANGED
@@ -196,6 +196,7 @@ export default function configRecommended(pluginCrisp) {
196
196
  }
197
197
  ],
198
198
  "jsdoc/require-param-description": "off",
199
+ "jsdoc/require-property-description": "off",
199
200
  "jsdoc/sort-tags": [
200
201
  "error",
201
202