-
Notifications
You must be signed in to change notification settings - Fork 7
/
tslint.json
65 lines (65 loc) · 1.58 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"extends": [
"tslint-plugin-prettier",
"tslint-config-prettier",
"tslint-eslint-rules",
"tslint-immutable/all",
"tslint:all",
"tslint-react"
],
"rules": {
"no-empty": false,
"comment-format": false,
"no-object-mutation": false,
"no-parameter-properties": false,
"no-unused-expression": false,
"only-arrow-functions": false,
"no-method-signature": false,
"prefer-function-over-method": false,
"no-empty-interface": false,
"type-literal-delimiter": false,
"no-if-statement": false,
"no-null-keyword": false,
"prefer-method-signature": false,
"jsx-no-multiline-js": false,
"ordered-imports": false,
"jsx-boolean-value": false,
"newline-per-chained-call": false,
"no-mixed-interface": false,
"space-before-function-paren": false,
"no-expression-statement": false,
"typedef": [false, "variable-declaration"],
"max-line-length": [
true,
{
"limit": 150,
"ignore-pattern": "class [a-zA-Z] |<path"
}
],
"member-ordering": false,
"no-this": false,
"no-class": false,
"no-inferrable-types": false,
"no-any": true,
"quotemark": [true, "double"],
"indent": [true, "tabs", 4],
"file-name-casing": false,
"semicolon": [true, "never"],
"variable-name": false,
"no-default-export": false,
"no-default-import": false,
"no-import-side-effect": [
true,
{
"ignore-module": "(\\.html|\\.css)$"
}
],
"no-submodule-imports": false,
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"ban-types": false,
"trailing-comma": false,
"completed-docs": false
},
"defaultSeverity": "error"
}