forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
53 lines (53 loc) · 1018 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
43
44
45
46
47
48
49
50
51
52
53
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"plugins": [],
"settings": {
},
"rules": {
"indent": [
"error",
4, {
"MemberExpression": "off",
"SwitchCase": 1
}
],
"camelcase": ["error", {
"properties": "never"
}],
"eqeqeq": ["error", "always"],
"padded-blocks": ["error", "never"],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": "off",
"curly": ["error", "multi-or-nest"],
"no-var": "error",
"no-throw-literal": "error",
"prefer-const": "error",
"no-unused-vars": "error",
"no-implicit-globals": "error",
"no-global-assign": "error",
"space-before-function-paren": ["error", {
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}]
}
}