forked from nitaiaharoni1/vector-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
124 lines (124 loc) · 2.93 KB
/
.eslintrc.json
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"root": true,
"env": {
"browser": true,
"es2021": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"project": "./tsconfig.json"
},
"ignorePatterns": [
"node_modules/",
"dist/",
"build/",
"coverage/",
"public/"
],
"extends": [
"standard-with-typescript",
"eslint:all",
"prettier",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"plugins": [
"prettier",
"sort-keys-fix",
"sort-imports-es6-autofix"
],
"rules": {
"line-comment-position": "off",
"import/no-unresolved": "off",
"no-return-await": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"no-continue": "off",
"max-params": [
"error",
4
],
"no-underscore-dangle": "off",
"init-declarations": "off",
"sort-keys-fix/sort-keys-fix": "error",
"no-inline-comments": "off",
"no-console": [
"error",
{
"allow": [
"debug",
"warn",
"error"
]
}
],
"no-undefined": "off",
"no-undef": "off",
"@typescript-eslint/no-this-alias": "off",
"func-names": "off",
"consistent-this": "off",
"no-invalid-this": "off",
"prefer-named-capture-group": "off",
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/no-misused-promises": "off",
"sort-imports": "off",
"no-magic-numbers": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"no-ternary": "off",
"max-statements": [
"error",
50
],
"id-length": "off",
"sort-imports-es6-autofix/sort-imports-es6": [
2,
{
"ignoreCase": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"none",
"all",
"multiple",
"single"
]
}
],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/consistent-type-imports": "off",
"class-methods-use-this": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"multiline-comment-style": "off",
"require-jsdoc": "off",
"no-warning-comments": "off",
"capitalized-comments": "off",
"func-style": "off",
"max-lines-per-function": [
"error",
{
"max": 100,
"skipBlankLines": true,
"skipComments": true
}
],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 180,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": true,
"quoteProps": "as-needed",
"jsxSingleQuote": true,
"jsxBracketSameLine": false,
"jsxBracketSpacing": true
}
],
"no-use-before-define": "off"
}
}