forked from weyoss/redis-smq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
36 lines (36 loc) · 759 Bytes
/
.eslintrc.js
File metadata and controls
36 lines (36 loc) · 759 Bytes
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
module.exports = {
"env": {
"es6": true,
"node": true
},
"extends": "airbnb-base",
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-unused-vars":0,
"no-use-before-define":0,
"no-prototype-builtins":0,
"import/no-dynamic-require":0,
"no-trailing-spaces": 0,
"guard-for-in":0,
"no-restricted-syntax":0,
"no-param-reassign":0,
"no-empty":0,
"max-len":["error", 120],
"strict":0
}
};