javascript-algorithms/.eslintrc
2018-04-03 18:17:14 +03:00

14 lines
213 B
Plaintext

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