-
Notifications
You must be signed in to change notification settings - Fork 11
/
tslint.json
55 lines (55 loc) · 1.45 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
45
46
47
48
49
50
51
52
53
54
55
{
"extends": ["tslint:latest", "tslint-eslint-rules"],
"rulesDirectory": [
"tslint-no-focused-test"
],
"rules": {
"max-line-length": [true, 140],
"no-empty": false,
"no-default-export": true,
"no-focused-test": true,
"no-var-requires": false,
"no-require-imports": true,
"no-empty-interface": false,
"no-submodule-imports": false,
"no-object-literal-type-assertion": false,
"no-implicit-dependencies": [true, "dev"],
"no-namespace": [true, "allow-declarations"],
"object-curly-spacing": [true, "never"],
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"max-classes-per-file": [true, 3],
"quotemark": [true, "single", "jsx-double"],
"indent": [true, "tabs", 2],
"callable-types": false,
"interface-name" : [true, "never-prefix"],
"typedef": [true, "call-signature", "property-declaration"],
"no-multi-spaces": [true, {
"exceptions": {"PropertyAssignment": false, "OtherException": "true|false"}
}],
"ordered-imports": [
true,
{
"import-sources-order": "any",
"named-imports-order": "case-insensitive"
}
],
"member-ordering": [
true,
{
"order": [
"public-static-field",
"private-static-field",
"public-instance-field",
"public-constructor",
"private-instance-field",
"private-constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
],
"alphabetize": true
}
]
}
}