forked from palantir/plottable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
26 lines (26 loc) · 808 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
{
"rules": {
"align": [true, "parameters", "statements"],
"arrow-parens": true,
"ban": [
true,
"eval",
{ "name": ["Typesettable", "Measurer"], "message": "Use CacheMeasurer instead" }
],
"interface-name": [true, "always-prefix"],
"ordered-imports": true,
"no-consecutive-blank-lines": true,
"no-console": true,
"no-inferrable-types": [true, "ignore-params", "ignore-properties"],
"no-string-throw": true,
"no-trailing-whitespace": true,
"no-unused-variable": true,
"no-var-keyword": true,
"object-literal-key-quotes": [true, "as-needed"],
"prefer-const": true,
"quotemark": [true, "double"],
"semicolon": true,
"trailing-comma": [true, { "multiline": "always", "singleline": "never" }],
"whitespace": true
}
}