-
-
Notifications
You must be signed in to change notification settings - Fork 208
/
.eslintrc
37 lines (37 loc) · 943 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
33
34
35
36
37
{
"extends": "airbnb-base",
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true,
"experimentalObjectRestSpread": true
}
},
"env": {
"jest": true,
},
"rules": {
"arrow-parens": 0,
"class-methods-use-this": 0,
"default-param-last": 0,
"import/no-extraneous-dependencies": 0,
"linebreak-style": 0,
"no-confusing-arrow": 0,
"no-dupe-keys": 0,
"no-duplicate-imports": 0,
"no-else-return": 0,
"no-mixed-operators": 0,
"no-prototype-builtins": 0,
"no-restricted-globals": 0,
"no-restricted-syntax": ["error", "LabeledStatement", "WithStatement"],
"no-unused-vars": [2, { "varsIgnorePattern": "^_+$" }],
"quote-props": 0,
"semi": [2, "never"],
"space-before-function-paren": 0,
"symbol-description": 0,
"valid-jsdoc": 0,
"max-len": 0
}
}