23 lines
518 B
Plaintext
23 lines
518 B
Plaintext
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"prettier"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier"
|
|
],
|
|
"rules": {
|
|
"no-console": 1, // warning
|
|
"multiline-ternary": "off",
|
|
"no-nested-ternary": "error",
|
|
"no-multiple-empty-lines": "off",
|
|
"prettier/prettier": 2, // error
|
|
"@typescript-eslint/no-this-alias": 0
|
|
}
|
|
}
|