-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
34 lines (34 loc) · 1.03 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"member-access": [true, "no-public"],
"prefer-const": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"member-ordering": false,
"space-before-function-paren": [true, {
"anonymous": "always",
"named": "never",
"asyncArrow": "always",
"method": "always",
"constructor": "always"
}],
"one-line": false,
"max-line-length": [true, 140],
"ordered-imports": false,
"no-consecutive-blank-lines": [true, 2],
"unified-signatures": false,
"object-literal-sort-keys": false,
"trailing-comma": [true, "never"],
"no-console": false,
"object-literal-shorthand": [true, "never"],
"interface-name": [true, "never-prefix"],
"array-type": [true, "array"],
"no-empty-interface": false,
"newline-per-chained-call": true
},
"rulesDirectory": []
}