forked from lhartikk/naivecoin
-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathtslint.json
More file actions
26 lines (26 loc) · 525 Bytes
/
tslint.json
File metadata and controls
26 lines (26 loc) · 525 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"no-bitwise": false,
"eofline": false,
"no-empty": false,
"max-line-length": [140],
"max-classes-per-file": [4],
"prefer-for-of": false,
"radix": false,
"trailing-comma": false,
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"no-console": false,
"quotemark": [
true,
"single",
"avoid-escape"
]
},
"rulesDirectory": []
}