javascript-algorithms/.eslintrc

21 lines
338 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"
},
"settings": {
"react": {
"version": "latest"
}
}
}