forked from elsoul/skeet
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
executable file
·43 lines (43 loc) · 1.04 KB
/
.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
38
39
40
41
42
43
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": "latest",
"sourceType": "module"
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"env": {
"es6": true
},
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/ban-ts-comment": [
"off",
{
"ts-ignore": "allow-with-description"
}
],
// temprary disable
// "@typescript-eslint/no-floating-promises": "error",
// "@typescript-eslint/no-misused-promises": [
// "error",
// {
// "checksVoidReturn": false
// }
// ]
// temporary enable
"no-useless-escape": "off",
"no-useless-catch": "off",
"@typescript-eslint/no-namespace": "off",
"no-empty": "off",
"no-case-declarations": "off"
}
}