92aad866d5
renaming logger, adding health endpoint, working with old API, removing aggressive force save stuff, missing forgotten files etc, documentation
35 lines
999 B
Plaintext
35 lines
999 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": [
|
|
"prettier",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"no-var": "error",
|
|
"semi": "error",
|
|
"indent": ["error", 2, { "SwitchCase": 1 }],
|
|
"no-multi-spaces": "error",
|
|
"space-in-parens": "error",
|
|
"no-multiple-empty-lines": "error",
|
|
"prefer-const": "error",
|
|
"@typescript-eslint/explicit-member-accessibility": 0,
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
|
"@typescript-eslint/no-parameter-properties": 0,
|
|
"@typescript-eslint/interface-name-prefix": 0,
|
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/ban-types": "off",
|
|
"@typescript-eslint/no-namespace": "off",
|
|
"@typescript-eslint/no-var-requires": "off"
|
|
}
|
|
}
|