25 lines
508 B
JSON
25 lines
508 B
JSON
{
|
|
"env": {
|
|
"es2021": true,
|
|
"node": true,
|
|
"browser": true
|
|
},
|
|
"extends": [
|
|
"standard"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"comma-dangle": ["error", "only-multiline"],
|
|
"padded-blocks": "warn",
|
|
"no-multiple-empty-lines": "warn",
|
|
"space-before-function-paren": "off"
|
|
}
|
|
}
|