-
Notifications
You must be signed in to change notification settings - Fork 10
/
tslint.json
36 lines (36 loc) · 1.02 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
36
{
"defaultSeverity": "error",
"extends": [
"tslint:all",
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"jsRules": {},
"rules": {
"max-line-length": {
"options": [120]
},
"prettier": true,
"quotemark": [true, "single", "jsx-double"],
"ordered-imports": false,
"object-literal-sort-keys": false,
"arrow-parens": false,
"forin": false,
"no-default-export": false,
"no-default-import": false,
"typedef": false,
"arrow-call-signature": false,
"no-magic-numbers": false,
"variable-name": false,
"interface-name": false,
"completed-docs": false,
"only-arrow-functions": false,
"strict-boolean-expressions": false,
"no-implicit-dependencies": [true, "dev"],
"member-ordering": false,
"member-access": false,
"prefer-function-over-method": false,
"no-unbound-method": false
},
"rulesDirectory": []
}