-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.eslintrc
72 lines (72 loc) · 1.42 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
// Check for eslint rules reasoning
// https://transferwise.atlassian.net/browse/NP-101
{
"extends": "@transferwise",
"rules": {
"no-mixed-operators": 0,
"react/destructuring-assignment": [
0,
"never"
],
"jsx-a11y/label-has-for": [
2,
{
"required": {
"some": [
"nesting",
"id"
]
}
}
],
// New Rules to remove in NP-101
"eol-last": "off",
"react/jsx-wrap-multilines": 0,
"lines-between-class-members": "off",
"import/no-useless-path-segments": 0,
"react/button-has-type": 0,
"react/sort-comp": 0,
"react/no-unused-state": 0,
"no-else-return": 0,
"import/no-cycle": 0,
"import/order": 0,
"fp/no-mutation": 0,
"react/jsx-one-expression-per-line": [
0,
{
"allow": "literal"
}
],
"jsx-a11y/label-has-associated-control": [
2,
{
"required": {
"some": [
"nesting",
"id"
]
}
}
],
"react/jsx-props-no-spreading": 0,
"react/static-property-placement": 0,
"react/state-in-constructor": 0,
"import/no-unresolved": [
2,
{
"ignore": [
".css$"
]
}
],
"import/no-extraneous-dependencies": [
0,
{
"devDependencies": [
"src/**/*.story.js",
".storybook/*.js"
]
}
]
}
}