You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
660 B
43 lines
660 B
{
|
|
"extends": [
|
|
"prettier"
|
|
],
|
|
"plugins": [
|
|
"typescript"
|
|
],
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
2,
|
|
{
|
|
"SwitchCase": 1,
|
|
"flatTernaryExpressions": true
|
|
}
|
|
],
|
|
"no-unused-vars": "warn",
|
|
"typescript/no-unused-vars": "warn",
|
|
"semi": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single",
|
|
{
|
|
"avoidEscape": true
|
|
}
|
|
]
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"parser": "typescript-eslint-parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"modules": true
|
|
}
|
|
}
|
|
} |