-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtslint.json
41 lines (41 loc) · 1.01 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
{
"extends": [
"tslint:latest",
"tslint-react",
"tslint-eslint-rules",
"tslint-config-prettier"
],
"rulesDirectory": [
"tslint-plugin-prettier"
],
"rules": {
"completed-docs": [
true,
{
"classes": { "visibilities": ["exported"] },
"enums": { "visibilities": ["exported"] },
"enum-members": { "visibilities": ["exported"] },
"functions": { "visibilities": ["exported"] },
"interfaces": { "visibilities": ["exported"] },
"properties": { "privacies": ["public", "protected"] },
"methods": { "privacies": ["public", "protected"] },
"types": { "visibilities": ["exported"] },
"variables": { "visibilities": ["exported"] }
}
],
"object-literal-sort-keys": false,
"jsx-boolean-value": false,
"jsx-no-lambda": false,
"no-implicit-dependencies": [
true,
"dev"
],
"prettier": [
true,
{
"singleQuote": true,
"trailingComma": "all"
}
]
}
}