javascript-algorithms/.eslintrc
2018-05-05 10:58:04 +03:00

16 lines
270 B
Plaintext

{
"root": true,
"extends": "airbnb",
"plugins": ["jest"],
"env": {
"jest/globals": true
},
"rules": {
"no-bitwise": "off",
"no-lonely-if": "off",
"class-methods-use-this": "off",
"arrow-body-style": "off",
"no-loop-func": "off"
}
}