Skip to content

Commit 7dcc147

Browse files
committed
removing jsdoc from codeclimateRules.js file. it didnt work as expected
1 parent b6d307a commit 7dcc147

File tree

4 files changed

+4
-32
lines changed

4 files changed

+4
-32
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ It is important to note that in order for CodeClimate to use this custom config,
4646
```yaml
4747
plugins:
4848
eslint:
49-
channel: eslint-4
49+
channel: eslint-5
5050
config: # <- This line and the line below it are the important lines to add/tweak
5151
config: .codeclimate.eslintrc.js # <- this line and the line above it are the important lines to add/tweak
5252
extensions:

codeclimateEslintRules.js

Lines changed: 2 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"html",
55
"json",
66
"babel",
7-
"react-hooks",
8-
"jsdoc"
7+
"react-hooks"
98
],
109
"extends": [
1110
"airbnb",
@@ -68,33 +67,7 @@
6867
"react/require-default-props": "off",
6968
"react-hooks/rules-of-hooks": "error",
7069
"react-hooks/exhaustive-deps": "warn",
71-
"jest/no-large-snapshots": "error",
72-
"jsdoc/check-alignment": "warn",
73-
"jsdoc/check-examples": "warn",
74-
"jsdoc/check-indentation": "off",
75-
"jsdoc/check-param-names": "warn",
76-
"jsdoc/check-syntax": "warn",
77-
"jsdoc/check-tag-names": "warn",
78-
"jsdoc/check-types": "warn",
79-
"jsdoc/implements-on-classes": "warn",
80-
"jsdoc/match-description": "warn",
81-
"jsdoc/newline-after-description": "off",
82-
"jsdoc/no-types": "off",
83-
"jsdoc/no-undefined-types": "warn",
84-
"jsdoc/require-description-complete-sentence": "off",
85-
"jsdoc/require-description": "warn",
86-
"jsdoc/require-example": "off",
87-
"jsdoc/require-hyphen-before-param-description": "warn",
88-
"jsdoc/require-jsdoc": "warn",
89-
"jsdoc/require-param-description": "warn",
90-
"jsdoc/require-param-name": "warn",
91-
"jsdoc/require-param-type": "warn",
92-
"jsdoc/require-param": "warn",
93-
"jsdoc/require-returns-check": "warn",
94-
"jsdoc/require-returns-description": "warn",
95-
"jsdoc/require-returns-type": "warn",
96-
"jsdoc/require-returns": "warn",
97-
"jsdoc/valid-types": "warn"
70+
"jest/no-large-snapshots": "error"
9871
},
9972
"env": {
10073
"es6": true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fs/eslint-config-frontier-react",
3-
"version": "2.2.0-alpha.0",
3+
"version": "2.2.0",
44
"description": "A common ESLint configuration setup for frontier apps",
55
"main": "index.js",
66
"scripts": {

scripts/combineRules.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ const configsToCombine = [
1010
require('../es6'), // eslint-disable-line
1111
require('../react'), // eslint-disable-line
1212
require('../jest'), // eslint-disable-line
13-
require('../jsdoc'), // eslint-disable-line
1413
]
1514

1615
const codeclimateConfig = {

0 commit comments

Comments
 (0)