-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtslint.json
40 lines (40 loc) · 847 Bytes
/
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
{
"extends": "tslint:latest",
"rules": {
"linebreak-style": [
true,
"LF"
],
"max-classes-per-file": false,
"max-line-length": false,
"member-ordering": [
true,
{
"order": "fields-first"
}
],
"no-implicit-dependencies": false,
"no-submodule-imports": false,
"no-switch-case-fall-through": true,
"object-literal-key-quotes": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"one-variable-per-declaration": false,
"quotemark": [
true,
"single"
],
"radix": false,
"space-before-function-paren": [
true,
{
"anonymous": false,
"asyncArrow": "always",
"constructor": "never",
"method": "never",
"named": "never"
}
],
"trailing-comma": false
}
}