-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
38 lines (38 loc) · 867 Bytes
/
Copy path.eslintrc.js
File metadata and controls
38 lines (38 loc) · 867 Bytes
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
module.exports = {
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import"
],
"env": {
"jquery": true,
"browser": true,
"mocha": true,
"amd": true
},
"rules": {
"no-unused-vars": "warn",
"no-undef": "warn",
"no-shadow": "warn",
"no-console": "off",
"no-param-reassign": "off",
"no-case-declarations": "off",
"no-use-before-define": "off",
"comma-dangle": "off",
"no-plusplus": "off",
"arrow-parens": 'off',
"no-tabs": "off",
"func-names": "off",
"max-len": "off",
"no-multiple-empty-lines": "off",
"no-useless-escape": "off",
"consistent-return": "off",
"space-before-function-paren": ["error", "never"],
"arrow-body-style": "off",
"no-trailing-spaces": "off",
"class-methods-use-this": "off",
"eol-last": "off",
"no-continue": "off",
}
};