forked from linyimin0812/Play-with-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
21 lines (21 loc) · 651 Bytes
/
tslint.json
File metadata and controls
21 lines (21 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"extends" : ["tslint:recommended"],
"cliOptions": {
"exclude": [
"src/api.ts"
]
},
"rules": {
"interface-name" : [true, "never-prefix"],
"trailing-comma" : true,
"import-spacing" : false,
"no-multi-spaces" : false,
"member-ordering" : false,
"typedef-whitespace" : false,
"await-promise" : false,
"arrow-parens" : false,
"quotemark" : [true, "single", "avoid-escape"],
"semicolon" : [true, "never"],
"space-before-function-paren": [true, "always"]
}
}