-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtslint.json
40 lines (40 loc) · 1.2 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
},
"rules": {
"no-console": false,
"interface-name": false,
"no-empty-interface": false,
"no-conditional-assignment": false,
"max-line-length": [true, {"limit": 120, "ignore-pattern": "const \\S+ = `(.*?)`"}],
"max-classes-per-file": false,
"unified-signatures": false,
"no-var-requires": false,
"quotemark": [true, "single"]
// "use-input-property-decorator": true,
// "use-output-property-decorator": true,
// "use-host-property-decorator": true
// "trailing-comma": false,
// "max-classes-per-file": false,
// "ordered-imports": false,
// "variable-name": false,
// "prefer-const": false,
// "member-ordering": false,
// "no-bitwise": false,
// "forin": false,
// "object-literal-sort-keys": false,
// "one-line": [false],
// "object-literal-key-quotes": [false],
// "no-string-literal": false,
// "no-angle-bracket-type-assertion": false,
// "only-arrow-functions": false,
// "no-internal-module": false,
// "ban-types": false,
// "radix": false
},
"rulesDirectory": []
}