-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
44 lines (44 loc) · 935 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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:import/recommended",
"plugin:import/typescript"
],
"env": {
"browser": true,
"jest": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"globals": {
"expect": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts"]
}
}
},
"rules": {
"no-console": "off",
"require-jsdoc": 0,
"indent": "off",
"@typescript-eslint/explicit-function-return-type": 0,
"import/no-unresolved": "warn",
"import/no-named-as-default": "warn",
"no-multi-assign": 0,
"no-warning-comments": 0,
"prettier/prettier": 1,
"no-redeclare": "off",
"@typescript-eslint/no-redeclare": "off"
}
}