forked from coinbase/coinbase-pro-trading-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
27 lines (27 loc) · 872 Bytes
/
tslint.json
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {
},
"rules": {
"array-type": [true, "array"],
"forin": false,
"interface-name": false,
"max-classes-per-file": [true, 3],
"max-line-length": [true, 180],
"member-access": false,
"no-console": false,
"no-trailing-whitespace": [true, "ignore-comments", "ignore-jsdoc"],
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-var-requires": false,
"prefer-const": [true, {"destructuring": "all"}],
"trailing-comma": false,
"quotemark": [true, "single", "avoid-escape", "jsx-single"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
},
"rulesDirectory": []
}