This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy path.eslintrc
81 lines (81 loc) · 2.01 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
76
77
78
79
80
81
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": [
"react",
"react-hooks",
"@typescript-eslint",
"eslint-plugin-import-helpers",
"import"
],
"rules": {
"indent-legacy": [
"error",
2,
{
"FunctionDeclaration": {
"parameters": "first"
},
"ObjectExpression": "first",
"ArrayExpression": "first",
"CallExpression": {
"arguments": "first"
}
}
],
"no-prototype-builtins": 0,
"no-return-await": 1,
"camelcase": 0,
"no-underscore-dangle": 0,
"class-methods-use-this": 0,
"@typescript-eslint/no-empty-function": 1,
"@typescript-eslint/ban-ts-comment": 0,
"no-async-promise-executor": 0,
// "complexity": ["warn", 5],
"max-len": [
"warn",
{
"code": 120,
"ignoreComments": true
}
],
// "@typescript-eslint/no-var-requires":["warn"],
"no-console": ["error", { "allow": ["error", "log", "warn", "table", "debug"] }],
"no-undef": 1,
"eqeqeq": 1,
"function-paren-newline": ["error", "never"],
"function-call-argument-newline": ["error", "consistent"],
"import-helpers/order-imports": [
"warn",
{
"newlinesBetween": "always",
"groups": [
["/^react/"],
["module"],
["/^assets/"],
["/^components/"],
["/^contexts/"],
["/^db/"],
["/^graphql/"],
["/^helpers/"],
["/^interfaces/"],
["/^middleware/"],
["/^pages/"],
["/^services/"],
["/^styles/"],
["/^templates/"],
["/^types/"],
["/^x-hooks/"],
["parent", "sibling", "index"]
],
"alphabetize": { "order": "asc", "ignoreCase": true }
}
]
},
"ignorePatterns": ["**/*.js", "**/assets/icons/*.tsx", "**/assets/*.tsx"]
}