This repository was archived by the owner on Nov 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
49 lines (49 loc) · 1.46 KB
/
tslint.json
File metadata and controls
49 lines (49 loc) · 1.46 KB
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
41
42
43
44
45
46
47
48
49
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"ban-comma-operator": true,
"class-name": true,
"curly": true,
"encoding": true,
"eofline": true,
"import-spacing": true,
"indent": [true, "spaces", 4],
"member-access": true,
"member-ordering": [true, {"order": "fields-first"}],
"newline-before-return": true,
"no-any": true,
"no-conditional-assignment": true,
"no-console": [true, "log", "error"],
"no-construct": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-duplicate-variable": [true, "check-parameters"],
"no-empty": true,
"no-eval": true,
"no-null-keyword": true,
"no-parameter-reassignment": true,
"no-reference": true,
"no-unsafe-finally": true,
"no-use-before-declare": true,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "always"],
"triple-equals": true,
"use-isnan": true,
"variable-name": [true, "allow-pascal-case"],
"whitespace": [true, "check-module"]
},
"rulesDirectory": [],
"linterOptions": {
"exclude": [
"./code-cov/**/*",
"./__mocks__/**/*",
"./node_modules/**/*"
]
}
}