blob: 389b34ba4a2c73edbc692d5b4b8155b243fd095d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
module.exports = {
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"jest": true,
},
"rules": {
"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",
}
};
|