javascript-algorithms/.eslintrc
Oleksii Trekhleb 67cdad8030 Add graph.
2018-04-10 11:42:32 +03:00

15 lines
243 B
Plaintext

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