-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
48 lines (48 loc) · 1.13 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
38
39
40
41
42
43
44
45
46
47
48
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"env": {
"browser": true,
"node": true,
"jest": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"browser": false
},
"rules": {
"@typescript-eslint/explicit-function-return-type": 0,
"class-methods-use-this": 0,
"no-console": 1,
"no-param-reassign": ["error", { "props": false }],
"no-trailing-spaces": 2,
"no-use-before-define": [2, {
"functions": false
}],
"object-curly-newline": [2, {
"multiline": true,
"consistent": true
}],
"object-property-newline": [2, {
"allowAllPropertiesOnSameLine": true
}],
"prettier/prettier": 2
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
}
}
}