-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
23 lines (23 loc) · 761 Bytes
/
tslint.json
File metadata and controls
23 lines (23 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"extends": "tslint:latest",
"exclude": ["typings"],
"rules": {
"curly": true,
"one-variable-per-declaration": [true],
"no-any": true,
"no-consecutive-blank-lines": [true],
"no-require-imports": true,
"member-access": [true],
"indent": [true, "spaces"],
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"typedef": [true, "call-signature", "parameter", "property-declaration"],
"max-line-length": [false],
"no-string-literal": false,
"no-console": [false],
"member-ordering": false,
"object-literal-key-quotes": false,
"no-implicit-dependencies": false,
"no-submodule-imports": false
}
}