-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
37 lines (37 loc) · 1.22 KB
/
.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
28
29
30
31
32
33
34
35
36
37
{
"env": {
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"extends": ["standard", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"ignorePatterns": [],
"rules": {
"new-cap": ["off"],
"no-unused-vars": ["off"],
"n/handle-callback-err": "off",
"n/no-callback-literal": "off",
"n/no-path-concat": "warn",
"eqeqeq": "off",
"prefer-spread": "warn",
"no-useless-catch": "warn",
"no-use-before-define": "off",
"camelcase": "off",
"no-case-declarations": "warn",
"no-useless-call": "warn",
"no-useless-constructor": "off",
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/ban-types": ["warn"]
}
}