Skip to content

Commit 3dc19fd

Browse files
committed
Remove non-existent eslint-plugin-jsdoc rules
For some reason, these rules do not exist: - check-property-names - check-values - empty-tags - require-property-description - require-property-name - require-property-type - require-property Since we just added them to be in compliance with the latest release of eslint-plugin-jsdoc, we are disabling them, for now. Release version 2.1.1.
1 parent 6c0273a commit 3dc19fd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

index.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ module.exports = {
7272
'jsdoc/check-examples': 'warn',
7373
'jsdoc/check-indentation': 'off',
7474
'jsdoc/check-param-names': 'warn',
75-
'jsdoc/check-property-names': 'warn',
75+
// 'jsdoc/check-property-names': 'warn',
7676
'jsdoc/check-syntax': 'warn',
7777
'jsdoc/check-tag-names': 'warn',
7878
'jsdoc/check-types': 'warn',
79-
'jsdoc/check-values': 'warn',
80-
'jsdoc/empty-tags': 'warn',
79+
// 'jsdoc/check-values': 'warn',
80+
// 'jsdoc/empty-tags': 'warn',
8181
'jsdoc/implements-on-classes': 'warn',
8282
'jsdoc/match-description': 'warn',
8383
'jsdoc/newline-after-description': 'off',
@@ -94,10 +94,10 @@ module.exports = {
9494
'jsdoc/require-param-name': 'warn',
9595
'jsdoc/require-param-type': 'warn',
9696
'jsdoc/require-param': 'warn',
97-
'jsdoc/require-property-description': 'warn',
98-
'jsdoc/require-property-name': 'warn',
99-
'jsdoc/require-property-type': 'warn',
100-
'jsdoc/require-property': 'warn',
97+
// 'jsdoc/require-property-description': 'warn',
98+
// 'jsdoc/require-property-name': 'warn',
99+
// 'jsdoc/require-property-type': 'warn',
100+
// 'jsdoc/require-property': 'warn',
101101
'jsdoc/require-returns-check': 'warn',
102102
'jsdoc/require-returns-description': 'warn',
103103
'jsdoc/require-returns-type': 'warn',

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-tree",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Shared Tree configuration that contains overrides and enhancements on top of the base frontier configuration.",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)