This repository has been archived by the owner on Jun 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
75 lines (75 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"airbnb-base",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"quotes": [
"error",
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"no-continue": 0,
"global-require": 0,
"import/no-dynamic-require": 0,
"import/first": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-explicit-any": 0,
"prefer-object-spread": 0,
"prefer-const": 0,
"one-var": 0,
"no-console": 0,
"camelcase": 0,
"func-names": 0,
"no-async-promise-executor": 0,
"arrow-parens": ["warn", "as-needed"],
"indent": 0,
"class-methods-use-this": 0,
"import/no-named-as-default": 0,
"no-param-reassign": 0,
"no-return-assign": 0,
"no-shadow": 0,
"array-callback-return": 0,
"no-nested-ternary": 0,
"consistent-return": 0,
"default-case": 0,
"no-underscore-dangle": 0,
"dot-notation": 0,
"no-trailing-spaces": [
2,
{
"skipBlankLines": true
}
],
"prefer-template": 0,
"prefer-promise-reject-errors": 0,
"import/prefer-default-export": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"babel/object-curly-spacing": 0,
"prefer-destructuring": [
"error",
{
"AssignmentExpression": {
"array": false,
"object": false
}
}
]
}
}