-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtslint.json
24 lines (24 loc) · 875 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
{
"rules": {
"class-name": true,
"curly": true,
"interface-name": [ true, "never-prefix" ],
"label-position": true,
"prefer-const": true,
"member-access": true,
"member-ordering": [ true, { "order": "statics-first" } ],
"no-conditional-assignment": true,
"no-console": [ true, "assert", "count", "debug", "dir", "dirxml", "group", "groupCollapsed", "groupEnd", "log", "profile", "profileEnd", "table", "time", "timeEnd", "timeStamp", "trace", "warn" ],
"no-debugger": true,
"no-default-export": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-inferrable-types": [true],
"no-internal-module": true,
"no-unused-expression": true,
"no-var-keyword": true,
"one-variable-per-declaration": [true],
"radix": true,
"triple-equals": [ true, "allow-null-check" ]
}
}