javascript-algorithms/.eslintrc

13 lines
175 B
Plaintext
Raw Normal View History

2018-03-27 18:03:44 +08:00
{
"root": true,
"extends": "airbnb",
"plugins": ["jest"],
"env": {
"jest/globals": true
2018-04-02 17:27:20 +08:00
},
"rules": {
2018-04-02 22:50:56 +08:00
"no-bitwise": "off",
"no-lonely-if": "off"
2018-03-27 18:03:44 +08:00
}
}