forked from graphql-nexus/nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
44 lines (44 loc) · 1.08 KB
/
tslint.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
{
"extends": ["tslint-config-prettier"],
"rules": {
"ban": false,
"curly": true,
"eofline": false,
"forin": true,
"indent": [true, "spaces"],
"jsdoc-format": true,
"label-position": true,
"no-any": false,
"no-arg": true,
"no-bitwise": true,
"no-consecutive-blank-lines": false,
"no-construct": true,
"no-debugger": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
"no-default-export": true,
"no-shadowed-variable": true,
"no-string-literal": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": false,
"no-unused-expression": true,
"no-unbound-method": true,
"no-floating-promises": true,
"one-line": [
true,
"check-catch",
"check-else",
"check-open-brace",
"check-whitespace"
],
"radix": true,
"restrict-plus-operands": true,
"trailing-comma": [false],
"triple-equals": [true, "allow-null-check"],
"whitespace": false
},
"linterOptions": {
"exclude": ["**/*.json", "examples/zeit-typescript/**/*"]
}
}