-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.js
50 lines (46 loc) · 1.12 KB
/
.eslintrc.js
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
module.exports = {
env: {
browser: true,
es6: true,
jquery: true,
},
extends: [
"metalab",
"metalab/react"
],
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
},
rules: {
"metalab/prettier/prettier": 0,
// disable no-unresolved as it does not work with webpack aliases
"metalab/import/no-unresolved": 0,
// disable this as it doesn't take into account form onSubmit
"metalab/jsx-a11y/no-noninteractive-element-interactions": 0,
"metalab/jsx-a11y/label-has-for": [2, {
"required": {"some": ["nesting", "id"]},
}],
// disable for some rules to prevent indent rule conflict
"metalab/react/jsx-closing-bracket-location": [
"warning",
{
selfClosing: "line-aligned",
nonEmpty: "after-props",
}
],
"require-jsdoc": [
"error",
{
"require": {
"FunctionDeclaration": true,
"MethodDefinition": false,
"ClassDeclaration": false,
"ArrowFunctionExpression": true,
"FunctionExpression": false
}
}
],
"max-len": ["error", 120],
}
};