-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
47 lines (47 loc) · 1.1 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
{
"plugins": ["@typescript-eslint"],
"extends": ["react-app"],
"parser": "@typescript-eslint/parser",
"rules": {
"no-restricted-globals": [
"error",
{
"name": "spyOn",
"message": "Use sinon for mocking."
},
{
"name": "spyOnProperty",
"message": "Use sinon for mocking."
},
{
"name": "expect",
"message": "Use src/expect."
}
],
"no-restricted-imports": [
"error",
{
"paths": [
{
"name": "styled-components",
"message": "Please import from styled-components/macro."
}
],
"patterns": ["!styled-components/macro", "!ionicons/icons"]
}
],
"@typescript-eslint/no-unused-vars": "warn",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/alt-text": "off",
"react/jsx-no-target-blank": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".tsx"] }]
},
"overrides": [
{
"files": ["**/*.spec.tsx"],
"rules": {
"@typescript-eslint/no-unused-expressions": "off"
}
}
]
}