-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.json
37 lines (37 loc) · 1003 Bytes
/
.eslintrc.json
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
28
29
30
31
32
33
34
35
36
37
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"ignorePatterns": ["src/typings"],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2022,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/naming-convention": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/semi": "warn",
"curly": "error",
"no-throw-literal": "error",
"no-warning-comments": "warn",
"eqeqeq": [
"error",
"always",
{
"null": "never"
}
],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_"
}
]
}
}