forked from taye/interact.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
35 lines (35 loc) · 1.07 KB
/
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
28
29
30
31
32
33
34
35
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"align": true,
"arrow-parens": true,
"forin": false,
"interface-name": [true, "never-prefix"],
"max-classes-per-file": false,
"max-line-length": false,
"member-access": [false, "no-public"],
"no-bitwise": false,
"no-conditional-assignment": false,
"no-consecutive-blank-lines": false,
"no-empty": false,
"no-inferrable-types": [true, "ignore-properties"],
"no-namespace": false,
"no-reference": false,
"no-shadowed-variable": false,
"object-literal-shorthand": true,
"object-literal-sort-keys": false,
"one-line": false,
"only-arrow-functions": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"semicolon": [true, "never"],
"space-before-function-paren": [true, "always"],
"trailing-comma": false,
"type-literal-delimiter": [false, "never"],
"variable-name": false
},
"rulesDirectory": []
}