diff --git a/.eslintrc.json b/.eslintrc.json index 219ba721153..69c26f940ab 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -69,14 +69,19 @@ "curly": "error", "jest/expect-expect": "off", "jest/no-export": "warn", - "jsdoc/require-jsdoc": "off", "jsdoc/check-tag-names": "off", + "jsdoc/require-jsdoc": "off", "lines-between-class-members": ["error", "always"], - "no-multiple-empty-lines": ["error", { "max": 1 }], - "no-unneeded-ternary": "error", "no-eval": "error", "no-implied-eval": "error", + "no-multiple-empty-lines": [ + "error", + { + "max": 1 + } + ], "no-new-func": "error", + "no-unneeded-ternary": "error", "react/forbid-component-props": [ "warn", { @@ -130,6 +135,10 @@ "settings": { "react": { "pragma": "h" + }, + "jsdoc": { + "ignoreInternal": true, + "ignorePrivate": true } } }