14 lines
274 B
Plaintext
14 lines
274 B
Plaintext
|
|
{
|
||
|
|
"extends": ["airbnb-base", "plugin:@typescript-eslint/recommended"],
|
||
|
|
"rules": {
|
||
|
|
"@typescript-eslint/indent": ["error", 2],
|
||
|
|
"arrow-body-style": "off",
|
||
|
|
"import/extensions": "off"
|
||
|
|
},
|
||
|
|
"env": {
|
||
|
|
"mocha": true,
|
||
|
|
"node": true,
|
||
|
|
"browser": true
|
||
|
|
}
|
||
|
|
}
|