30 lines
613 B
Plaintext
30 lines
613 B
Plaintext
{
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4,
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"@typescript-eslint/indent": [
|
|
"error",
|
|
4,
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"max-len": [
|
|
"error",
|
|
120
|
|
],
|
|
"no-bitwise": "off",
|
|
"no-underscore-dangle": "off",
|
|
"no-continue": "off",
|
|
"no-restricted-syntax": "off",
|
|
"class-methods-use-this": "off",
|
|
"max-classes-per-file": "off",
|
|
"camelcase": "error"
|
|
}
|
|
}
|