diff options
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index b418fd4..376aa38 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -6,6 +6,7 @@ module.exports = { "jest": true, }, "rules": { - "react/jsx-filename-extension": [1, { "extensions": [".js"] }] + "react/jsx-filename-extension": ["error", { "extensions": [".js"] }], + "no-underscore-dangle": ["error", { "allow": ["_test"] }], } }; |