-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy path.eslintrc
140 lines (139 loc) · 4.15 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:compat/recommended",
],
"parser": "babel-eslint",
"env": {
"browser": true,
"commonjs": false,
"es6": true,
"mocha": true,
"node": true,
"shared-node-browser": true,
"webextensions": true,
"worker": true
},
"globals": {},
"rules": {
"arrow-parens": [
"error",
"as-needed",
{ "requireForBlockBody": true }
],
"max-classes-per-file": "off",
"jsx-a11y/control-has-associated-label": "off",
"jsx-a11y/mouse-events-have-key-events": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/label-has-for": "off",
"jsx-a11y/label-has-associated-control": [
"error",
{
"controlComponents": [
"RadioInput",
"TextInput"
],
"required": {
"some": [
"nesting",
"id"
]
}
}
],
"implicit-arrow-linebreak": "off",
"prefer-destructuring": "off",
"object-curly-newline": [
"error",
{
"consistent": true
}],
"no-control-regex": "off",
"compat/compat": "error",
"import/extensions": "off",
"class-methods-use-this": "off",
"no-restricted-syntax": [
"error",
"ForInStatement",
"LabeledStatement",
"WithStatement"
],
"comma-dangle": ["error", {
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "always-multiline",
"functions": "ignore"
}],
"react/require-default-props": "off",
"react/prop-types": "off",
"react/destructuring-assignment": "off",
"no-underscore-dangle": "off",
"import/no-unresolved": "off",
"no-restricted-globals": ["error", "Worker"],
"react/sort-comp": "off",
"react/forbid-prop-types": "off",
"react/jsx-fragments": "off",
"react/jsx-props-no-spreading": "off",
"react/state-in-constructor": "off",
"react/jsx-curly-newline": "off",
"react/jsx-one-expression-per-line": "off"
},
"overrides": [
{
files: ["**/*.ts", "**/*.tsx"],
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:compat/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
rules: {
"lines-between-class-members": "off",
"react/jsx-filename-extension": "off",
"react/prop-types": "off"
}
},
{
"files": [
"modules/mobile-cards/**/*.*"
],
"rules" : {
"jsx-a11y/anchor-is-valid": "off"
}
},
{
"files": [
"modules/**/tests/**/*.*",
"modules/**/*tests.bundle.*",
"modules/**/*helpers.*",
"fern.js",
"fern/**/*.js"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"func-names": ["error", "never"],
"prefer-arrow-callback": "off",
"no-unused-expressions": "off",
"object-shorthand": "off",
"no-console": "off"
}
},
{
"files": [
"fern/commands/*.*",
"broccoli/**/*.*"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"global-require": "off",
"import/no-dynamic-require": "off",
"strict": "off",
"no-console": "off"
}
}
]
}