forked from vytenisu/npm-dts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
27 lines (27 loc) · 1002 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
{
"extends": ["tslint:recommended"],
"rules": {
"indent": [true, "spaces", 2],
"quotemark": [true, "single", "avoid-template"],
"semicolon": [true, "never"],
"no-empty-interface": false,
"object-literal-sort-keys": false,
"no-trailing-whitespace": [true, "ignore-blank-lines"],
"arrow-parens": [true, "ban-single-arg-parens"],
"completed-docs": [
true,
{
"classes": {"visibilities": ["exported"]},
"enums": {"visibilities": ["exported"]},
"enum-members": {"visibilities": ["exported"]},
"functions": {"visibilities": ["exported"]},
"interfaces": {"visibilities": ["exported"]},
"methods": {"locations": "all", "privacies": ["public", "protected"]},
"namespaces": {"visibilities": ["exported"]},
"properties": {"locations": "all", "privacies": ["public", "protected"]},
"types": {"visibilities": ["exported"]},
"variables": {"visibilities": ["exported"]}
}
]
}
}