forked from styleguidist/react-styleguidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
84 lines (84 loc) · 1.76 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
82
83
84
{
"parser": "babel-eslint",
"extends": ["tamia/react", "plugin:jsx-a11y/recommended"],
"env": {
"browser": true,
"node": true
},
"plugins": [
"compat",
"import",
"jsx-a11y"
],
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".json",
".ts"
]
}
},
"react": {
"version": "16.6"
}
},
"rules": {
"valid-jsdoc": 0,
"no-duplicate-imports": 0,
"compat/compat": "error",
"import/no-unresolved": ["error", {
"commonjs": true,
"caseSensitive": true
}],
"import/export": "error",
"import/no-named-as-default-member": "error",
"import/no-mutable-exports": "error",
"import/no-amd": "error",
"import/first": ["error", "absolute-first"],
"import/no-duplicates": "error",
"import/extensions": ["error", "always", {
"js": "never",
"tsx": "never",
"ts": "never",
"mjs": "never"
}],
"import/no-extraneous-dependencies": "error",
"import/newline-after-import": "error",
"import/prefer-default-export": "error",
"import/no-named-default": "error"
},
"globals": {
"System": false,
"classes": false,
"shallow": false,
"render": false,
"mount": false,
"cy": false
},
"overrides": [
{
"files": ["*.spec.js"],
"rules": {
"compat/compat": 0
}
},
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"settings": {
"import/resolver": {
"typescript": {}
}
},
"plugins": ["@typescript-eslint"],
"extends": [
"tamia/typescript-react"
]
}
]
}