javascript-algorithms/.eslintrc

12 lines
148 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": {
"no-bitwise": "off"
2018-03-27 18:03:44 +08:00
}
}