-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
32 lines (32 loc) · 918 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
{
"extends": ["tslint:latest"],
"rules": {
"max-line-length": [true, 100],
"quotemark": [
true, "single", "jsx-double", "avoid-escape"
],
"semicolon": [true, "never"],
"arrow-parens": [true, "ban-single-arg-parens"],
"interface-name": [true, "never-prefix"],
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
"member-ordering": [
true,
{
"order": [
"static-field",
"instance-field",
"constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
]
}
],
"object-literal-sort-keys": false,
"object-literal-key-quotes": [true, "as-needed"],
"member-access": [true, "no-public"],
"ban-types": [false],
"no-duplicate-imports": false,
"no-submodule-imports": false
}
}