-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
76 lines (76 loc) · 2.16 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
{
"extends": ["plugin:@typescript-eslint/recommended", "airbnb-typescript", "prettier"],
"ignorePatterns": ["*.config.js"],
"env": {
"browser": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"project": "./tsconfig.json",
"tsconfigRootDir": "."
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": "tsconfig.json"
}
}
},
"rules": {
"no-plusplus": "off",
"import/no-unresolved": "off",
"import/order": [
"warn",
{
"groups": ["builtin", "external", "internal", "sibling"],
"newlines-between": "never"
}
],
"import/no-cycle": [
"warn",
{
"maxDepth": 2
}
],
"no-empty": [
"error",
{
"allowEmptyCatch": true
}
],
"consistent-return": "off",
"react/state-in-constructor": ["error", "never"],
"react/jsx-props-no-spreading": [
"error",
{
"html": "enforce",
"custom": "ignore",
"explicitSpread": "enforce",
"exceptions": []
}
],
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"max-classes-per-file": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"react/static-property-placement": "off",
"newline-before-return": "error",
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": ["Link"],
"specialLink": ["hrefLeft", "hrefRight"],
"aspects": ["invalidHref", "preferButton"]
}
],
"@typescript-eslint/no-redeclare": "off",
"arrow-body-style": "off",
"import/prefer-default-export": "off"
}
}