1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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",
}
};
|