forked from PeterStaev/nativescript-masked-text-field
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
32 lines (32 loc) · 753 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
{
"extends": "tslint:latest",
"rules": {
"eofline": false,
"one-line": [ "check-open-brace" ],
"object-literal-sort-keys": false,
"interface-name": [ true, "never-prefix" ],
"max-line-length": [ false ],
"variable-name": [ true, "ban-keywords" ],
"prefer-for-of": true,
"no-string-literal": false,
"no-trailing-whitespace": false,
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
],
"switch-default": false,
"max-classes-per-file": [false],
"no-console": [
false
],
"ordered-imports": [
true,
{"named-imports-order": "lowercase-last"}
],
"no-unused-variable": [true],
"no-bitwise": false
}
}