-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
42 lines (42 loc) · 962 Bytes
/
.eslintrc.json
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
{
"extends": [
"airbnb",
"prettier",
"prettier/react",
"plugin:cypress/recommended"
],
"plugins": ["prettier", "cypress", "chai-friendly"],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"globals": { "DEBUG": false },
"rules": {
"no-console": "off",
"func-names": 0,
"prettier/prettier": "error",
"no-absolute-path": "off",
"react/prop-types": 0,
"prefer-template": "off",
"react/no-array-index-key": "off",
"react/jsx-boolean-value": "off",
"react/jsx-curly-brace-presence": "off",
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": "off",
"eqeqeq": "off",
"no-var": 0,
"vars-on-top": "off",
"no-plusplus": "off",
"block-scoped-var": "off",
"no-use-before-define": "off"
}
}