forked from auth0/auth0.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
36 lines (36 loc) · 853 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
{
"extends": ["eslint:recommended", "prettier"],
"plugins": ["compat"],
"env": {
"browser": true,
"mocha": true,
"node": true
},
"parser": "@babel/eslint-parser",
"rules": {
"func-names": "off",
"no-underscore-dangle": "off",
"no-prototype-builtins": "off",
"no-param-reassign": "off",
"consistent-return": "off",
"vars-on-top": "off",
"compat/compat": "error",
"no-var": 0,
"object-shorthand": 0,
"prefer-template": 0,
"prefer-arrow-callback": 0,
"no-plusplus": 0,
"import/newline-after-import": 0,
"no-useless-return": 0,
"import/no-mutable-exports": 0,
"import/first": 0,
"prefer-spread": 0,
"prefer-rest-params": 0,
"lines-around-directive": 0,
"valid-typeof": 0,
"radix": "off"
},
"settings": {
"polyfills": ["Object.assign"]
}
}