-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc
31 lines (31 loc) · 872 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
28
29
30
31
{
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"plugins": [
"@typescript-eslint",
"prettier"
],
"env": {
"es6": true,
"node": true
},
"rules": {
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-this-alias": "off",
"no-async-promise-executor": "off",
"no-prototype-builtins": "off",
"prefer-const": ["error", {
"destructuring": "all"
}],
"eqeqeq": 2,
"prettier/prettier": "error"
}
}