-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
76 lines (71 loc) · 2.06 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"airbnb",
"plugin:import/recommended",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
// Making life easier
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"max-len": "off",
"no-plusplus": "off",
"react/prop-types": "off",
"import/prefer-default-export": "off",
"react/function-component-definition": "off",
// Indent with 4 spaces
"indent": ["error", 4],
"react/jsx-indent": ["error", 4],
"react/jsx-indent-props": ["error", 4],
// Disable the base rule as they're replaced by TS rules to prevent errors
"no-use-before-define": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-use-before-define": "error",
"@typescript-eslint/no-unused-vars": "warn",
// Webpack resolves extensions automatically.
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"mjs": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
// Webpack resolves React automatically, no need to import it.
"react/react-in-jsx-scope": "off",
// Allow JSX in TSX files.
"react/jsx-filename-extension": [1, { "extensions": [".tsx"] }]
},
"ignorePatterns": [
"node_modules",
"build",
"dist",
"public"
],
"settings": {
"import/resolver": {
"typescript": {} // this loads <rootdir>/tsconfig.json to eslint
}
}
}