-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
27 lines (27 loc) · 865 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"rules": {
"comma-dangle": ["warn", "always-multiline"],
"eol-last": "warn",
"semi": ["warn", "always"],
"spaced-comment": "warn",
"no-console": "error",
"no-multiple-empty-lines": ["error", {"max": 1}],
"no-trailing-spaces": "warn",
"no-duplicate-imports": "error",
"no-unused-vars": "off",
"no-useless-rename": "error",
"no-warning-comments": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["error"]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
}