-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
54 lines (54 loc) · 1.33 KB
/
.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
54
{
"env": {
"browser": true,
"node": true
},
"plugins": [
"node"
],
"extends" : [
"airbnb-base",
"plugin:node/recommended"
],
"rules" : {
"node/exports-style": ["error", "module.exports"],
"max-len": ["warn", 150],
"no-console": "off",
"no-useless-concat": "warn",
"no-unused-vars": "warn",
"func-names": ["error", "never"],
"comma-dangle": ["error", "never"],
"prefer-template": "off",
"brace-style": ["warn", "stroustrup"],
"prefer-destructuring": "off",
"wrap-iife": "off",
"no-underscore-dangle": "off",
"arrow-body-style": "off",
"no-lonely-if": "off",
"no-use-before-define": ["error", { "functions": false}],
"no-param-reassign": ["error", { "props": false }],
"object-curly-newline": "off",
"no-process-exit": "off",
"indent" : [
"error",
4
],
"linebreak-style" : "off",
"quotes" : [
"error",
"single"
],
"semi" : [
"error",
"always"
]
},
"globals": {
"angular": true,
"document": true,
"window": true,
"google": true,
"async": true,
"moment": true
}
}