forked from idesis-gmbh/png2icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
39 lines (39 loc) · 1.38 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
{
"defaultSeverity": "error",
"extends": [
"tslint:latest"
],
"rules": {
"completed-docs": [
true,
{
"classes": true,
"enums": true,
"enum-members": true,
"functions": true,
"interfaces": true,
"methods": true,
"namespaces": true,
"properties": {"privacies": ["public", "protected"]},
"types": true,
"variables": true
}
],
"jsdoc-format": [true, "check-multiline-start"],
"max-classes-per-file": [true, 1],
"max-line-length": [true, {"limit": 120, "ignore-pattern": "^import |^export {(.*?)}|//|\\sconsole\\."}],
"no-console": [false],
"no-implicit-dependencies": false,
"no-redundant-jsdoc": true,
"object-literal-sort-keys": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
},
"jsRules": {
"jsdoc-format": [true, "check-multiline-start"],
"max-line-length": [true, {"limit": 120, "ignore-pattern": "^import |^export {(.*?)}|//|\\sconsole\\."}],
"no-console": [false],
"object-literal-sort-keys": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
},
"rulesDirectory": []
}