javascript-algorithms/.eslintrc

21 lines
338 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",
2018-05-05 15:58:04 +08:00
"arrow-body-style": "off",
"no-loop-func": "off"
},
"settings": {
"react": {
"version": "latest"
}
2018-03-27 18:03:44 +08:00
}
}