summaryrefslogtreecommitdiffstats
path: root/ui/tslint.json
blob: d3e7a8a97242ade6a3f24cb1b53df2426dcb72a0 (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
{
    "extends": "tslint:recommended",
    "rules": {
			"forin": false,
			"indent": [ true, "tabs" ],
			"interface-name": false,
			"ban-types": true,
			"max-classes-per-file": true,
			"max-line-length": false,
			"member-access": true,
			"member-ordering": false,
			"no-bitwise": false,
			"no-conditional-assignment": false,
			"no-debugger": false,
			"no-empty": true,
			"no-namespace": false,
			"no-unused-expression": true,
			"object-literal-sort-keys": true,
			"one-variable-per-declaration": [true, "ignore-for-loop"],
			"only-arrow-functions": [false],
			"ordered-imports": true,
			"prefer-const": true,
			"prefer-for-of": false,
			"quotemark": [ true, "single", "jsx-double" ],
			"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
			"variable-name": false
    }
}