javascript-algorithms/.eslintrc

15 lines
243 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",
2018-04-03 23:17:14 +08:00
"no-lonely-if": "off",
2018-04-10 16:42:32 +08:00
"class-methods-use-this": "off",
"arrow-body-style": "off"
2018-03-27 18:03:44 +08:00
}
}