-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtslint.json
More file actions
23 lines (23 loc) · 723 Bytes
/
tslint.json
File metadata and controls
23 lines (23 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"interface-name": [true, "never-prefix"],
"member-access": [true, "no-public"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [true, "single", "jsx-single"],
"semicolon": [true, "never"],
"space-before-function-paren": [
true,
{"anonymous": "always", "named": "never", "asyncArrow": "always"}
],
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
},
"rulesDirectory": []
}