summaryrefslogtreecommitdiff
path: root/tslint.json
blob: ae0df46b96e06eb06856427bc61f6eac13aef505 (plain)
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
{
	"defaultSeverity": "error",
	"extends": [
		"tslint:recommended"
	],
	"jsRules": {},
	"rules": {
		"align": false,
		"indent": ["tab"],
		"quotemark": ["single"],
		"no-var-requires": false,
		"no-string-throw": false,
		"trailing-comma": [false],
		"object-literal-sort-keys": false,
		"curly": false,
		"no-console": [false],
		"no-empty":false,
		"ordered-imports": [false],
		"arrow-parens": false,
		"object-literal-shorthand": false,
		"object-literal-key-quotes": false,
		"triple-equals": [false],
		"no-shadowed-variable": false,
		"no-string-literal": false,
		"variable-name": [false],
		"comment-format": [false],
		"interface-over-type-literal": false,
		"max-line-length": [false],
		"max-classes-per-file": false,
		"member-ordering": [false],
		"ban-types": [
			"Object"
		]
	},
	"rulesDirectory": []
}