-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
88 lines (87 loc) · 2.12 KB
/
.eslintrc.js
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
/**
* @type {import("eslint").Linter.Config}
*/
module.exports = {
root: true,
env: {
browser: true,
es6: true,
node: true,
},
plugins: ["prettier", "unused-imports"],
extends: [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:import/errors",
"plugin:import/warnings",
],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: "module",
},
settings: {
react: {
version: "detect",
},
"import/resolver": {
typescript: {},
},
},
overrides: [
{
files: ["*.ts", "*.tsx"],
parser: "@typescript-eslint/parser",
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
],
rules: {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/no-floating-promises": ["warn"],
"@typescript-eslint/ban-types": [
"error",
{
types: {
"React.FC": { message: "React.FC is not recommended anymore." },
},
},
],
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"regex/invalid": [
"error",
[
{
id: "excessiveRelativePath",
message:
"Relative imports are only allowed up to two levels up. Use an absolute path instead or rethink the folder structure.",
regex: "(\\.\\.\\/){3,}",
},
],
],
},
},
],
rules: {
"no-undef": "error",
"prettier/prettier": "error",
"unused-imports/no-unused-imports": "error",
"import/no-unresolved": "error",
"unused-imports/no-unused-vars": [
"error",
{
vars: "all",
varsIgnorePattern: "^_",
args: "after-used",
argsIgnorePattern: "^_",
ignoreRestSiblings: true,
},
],
},
};