-
Notifications
You must be signed in to change notification settings - Fork 31
/
.eslintrc.json
48 lines (48 loc) · 923 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
{
"extends": "formio",
"parserOptions": {
"ecmaVersion": 2015
},
"env": {
"browser": true,
"es6": true,
"node": true,
"mocha": true
},
"rules": {
"max-len": [
"warn",
{
"code": 120,
"ignoreComments": true,
"ignoreStrings": true
}
],
"no-console": "off",
"prefer-const": "error",
"prefer-template": "error",
"object-curly-spacing": [
"error",
"always"
],
"new-cap": [
"error",
{
"newIsCap": true,
"capIsNew": true,
"newIsCapExceptions": ["require"],
"capIsNewExceptions": ["Resource", "ObjectId"]
}
],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
]
}
}