forked from kenspirit/joi-to-json
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
57 lines (57 loc) · 986 Bytes
/
.eslintrc
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
55
56
57
{
"globals": {},
"ignorePatterns": [
"test/swagger-ui/",
"node_modules/"
],
"rules": {
"no-restricted-syntax": 0,
"guard-for-in": 0,
"dot-notation": 0,
"camelcase": 0,
"no-underscore-dangle": 0,
"no-extra-parens": 0,
"no-param-reassign": 0,
"radix": 0,
"class-methods-use-this": 0,
"new-cap": 0,
"global-require": 0,
"comma-dangle": [
"error",
"never"
],
"max-len": 0,
"no-new": 0,
"no-continue": 0,
"no-return-await": 0,
"arrow-body-style": 0,
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"no-unused-vars": [
2,
{
"vars": "all",
"args": "after-used",
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"semi": [
"error",
"never"
],
"no-console": 0
},
"env": {
"es6": true,
"node": true,
"mocha": true
},
"plugins": []
}