mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-10 11:09:43 +08:00
16 lines
270 B
Plaintext
16 lines
270 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",
|
|
"no-loop-func": "off"
|
|
}
|
|
}
|