-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc.js
66 lines (66 loc) · 1.78 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
module.exports = {
env: {
es6: true,
node: true,
// avoid errors like it/describe in test
jest: true,
// avoid errors like window/document
browser: true,
},
plugins: [
"react",
"@typescript-eslint",
"import",
"simple-import-sort",
"react-hooks",
],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:react/recommended",
"plugin:prettier/recommended",
"plugin:import/typescript",
"plugin:import/errors",
"plugin:import/warnings",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: "module",
tsconfigRootDir: __dirname,
project: ["./tsconfig.json"],
},
settings: {
react: {
version: "detect",
},
"import/resolver": {
alias: {
map: [["@", "./src"]],
extensions: [".ts", ".js", ".tsx", ".jsx", ".json"],
},
},
},
rules: {
"prettier/prettier": "warn",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/prefer-includes": "off",
"@typescript-eslint/member-delimiter-style": "off",
"@typescript-eslint/prefer-regexp-exec": "off",
"@typescript-eslint/no-explicit-any": "off",
eqeqeq: ["error", "always", { null: "ignore" }],
"@typescript-eslint/camelcase": ["error", { genericType: "always" }],
"prefer-const": ["error", { destructuring: "all" }],
"react/display-name": "off",
"simple-import-sort/sort": "error",
"sort-imports": "off",
"import/order": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
},
};