-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
31 lines (31 loc) · 1.04 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-eslint-rules", "tslint-immutable"],
"rules": {
"adjacent-overload-signatures": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"class-name": true,
"curly": [true, "all"],
"interface-name": [true, "never-prefix"],
"member-access": [true, "no-public"],
"member-ordering": [true, {"order": "instance-sandwich", "alphabetize": true }],
"no-console": true,
"no-delete": true,
"no-empty-interface": false,
"no-empty": false,
"no-method-signature": true,
"no-object-mutation": true,
"no-parameter-reassignment": true,
"no-return-await": true,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"quotemark": [true, "single", "avoid-escape"],
"readonly-array": [true, "ignore-local"],
"readonly-keyword": true,
"semicolon": [true, "never"],
"space-before-function-paren": [true, "always"],
"trailing-comma": [true],
"typedef": [true, "call-signature"]
},
"rulesDirectory": []
}