-
Notifications
You must be signed in to change notification settings - Fork 4
/
.eslintrc
47 lines (47 loc) · 1.04 KB
/
.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
38
39
40
41
42
43
44
45
46
47
{
"extends": [
"auth0-base",
"plugin:import/errors",
"plugin:import/warnings"
],
"ecmaFeatures": {
"modules": true
},
"parserOptions": {
"ecmaVersion": 4,
"sourceType": "module"
},
"env": {
"node": true,
"mocha": true
},
"rules": {
"max-len": 0,
"react/display-name": 0,
"array-bracket-spacing": [2, "always"],
"comma-dangle": [2, "never"],
"eol-last": 2,
"indent": [2, 2, {
"SwitchCase": 1
}],
"import/no-extraneous-dependencies": [error, { devDependencies: true }],
"prefer-arrow-callback": 0,
"object-shorthand": 0,
"prefer-template": 0,
"func-names": 0,
"new-cap": 0,
"no-param-reassign": 0,
"no-multiple-empty-lines": 2,
"no-unused-vars": 2,
"no-var": 0,
"object-curly-spacing": [2, "always"],
"quotes": [2, "single", "avoid-escape"],
"semi": [2, "always"],
"strict": 0,
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, {
"anonymous": "never",
"named": "never"
}]
}
}