-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
49 lines (49 loc) · 1.65 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
42
43
44
45
46
47
48
49
{
"$schema": "http://json.schemastore.org/tslint",
"rules": {
"class-name": true,
"jsdoc-format": [true, "check-multiline-start"],
"completed-docs": [true, "classes", "functions", "methods", "interfaces", "namespaces"],
"comment-format": [true, "check-space", "check-lowercase", { "ignore-words": ["TODO", "HACK", "NOTE"] }],
"no-duplicate-variable": true,
"no-eval": false,
"no-internal-module": true,
"no-unsafe-finally": true,
"no-var-keyword": true,
"triple-equals": [true, "allow-null-check"],
"variable-name": [true, "ban-keywords", "check-format"],
"no-submodule-imports": [
true,
"common",
"components",
"lodash",
"nativescript-ui-dataform",
"nativescript-ui-listview",
"tns-core-modules",
"nativescript-plugin-firebase",
"pdfmake"
],
"indent": [true, "spaces", 4],
"semicolon": [false, "always"],
"no-console": false,
"max-line-length": [true, 150],
"object-literal-sort-keys": false,
"interface-name": [true, "never-prefix"],
"no-object-literal-type-assertion": false,
"no-angle-bracket-type-assertion": false,
"no-shadowed-variable": false,
"no-for-in-array": true,
"one-variable-per-declaration": false,
"curly": false,
"member-ordering": [
true,
{
"alphabetize": true,
"order": "statics-first"
}
]
},
"linterOptions": {
"exclude": ["node_modules/*"]
}
}