forked from muralco/mural-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
39 lines (39 loc) · 977 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
{
"extends": ["tslint-config-airbnb"],
"rules": {
"arrow-return-shorthand": true,
"import-name": false,
"max-line-length": [true, 80],
"member-ordering": [
true,
{
"order": [
"static-field",
"instance-field",
"constructor",
"public-instance-method",
"protected-instance-method",
"private-instance-method"
]
}
],
"no-invalid-this": true,
"no-trailing-whitespace": true,
"object-literal-sort-keys": [true, "ignore-case"],
"object-shorthand-properties-first": false,
"one-line": [true, "check-open-brace"],
"ordered-imports": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type",
"check-typecast",
"check-preblock"
]
}
}