-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
32 lines (32 loc) · 900 Bytes
/
.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
{
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"env": {
"browser": true
},
"rules": {
"arrow-body-style": 0,
"arrow-parens": [2, "always"],
"global-require": 0,
"import/imports-first": 0,
"jsx-a11y/html-has-lang": 0,
"jsx-a11y/no-static-element-interactions": 0,
"max-len": [1, 120, 2, {"ignoreComments": true}],
"new-cap": [2, {"capIsNew": false, "newIsCap": true}],
"newline-per-chained-call": 0,
"no-class-assign": 0,
"no-confusing-arrow": 0,
"no-console": 1,
"no-multiple-empty-lines": ["error", { "max": 3, "maxEOF": 1 }],
"no-nested-ternary": 0,
"no-param-reassign": 0,
"no-shadow": 0,
"no-underscore-dangle": [1, { "allow": ["_id"] }],
"no-unused-vars": 1,
"react/forbid-prop-types": 0,
"react/jsx-filename-extension": 0,
"spaced-comment": [1, "always", {"exceptions": ["-"]}]
}
}