aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 389b34b..da38fd5 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,15 +1,18 @@
module.exports = {
"extends": "airbnb",
+ "parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"jest": true,
},
"rules": {
+ "strict": "off",
"react/jsx-filename-extension": ["error", { "extensions": [".js"] }],
"no-underscore-dangle": ["error", { "allow": ["_test"] }],
"class-methods-use-this": "off",
"no-prototype-builtins": "off",
"react/forbid-prop-types": "off",
+ "react/prefer-stateless-function": "off",
}
};