We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-underscore-dangle
1 parent debb20e commit aa0f1b6Copy full SHA for aa0f1b6
.eslintrc
@@ -30,7 +30,6 @@
30
"function-paren-newline": 0,
31
"no-plusplus": 1,
32
"no-param-reassign": 1,
33
- "no-underscore-dangle": 1,
34
"no-mixed-operators": 1,
35
"no-void": 1,
36
"no-continue": 1,
lib/rules/prop-types.js
@@ -91,7 +91,7 @@ module.exports = {
91
declaredPropTypes && (
92
// Check if this key is declared
93
(declaredPropTypes[key] || // If not, check if this type accepts any key
94
- declaredPropTypes.__ANY_KEY__)
+ declaredPropTypes.__ANY_KEY__) // eslint-disable-line no-underscore-dangle
95
)
96
);
97
0 commit comments