17 lines
404 B
JSON
17 lines
404 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"indent": "off",
|
|
"@typescript-eslint/indent": ["error", 2],
|
|
"semi": ["error", "never"],
|
|
"@typescript-eslint/semi": "off",
|
|
"no-unexpected-multiline": "error"
|
|
}
|
|
} |