forked from hollowverse-archive/hollowverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
57 lines (53 loc) · 1.26 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
{
"extends": [
"tslint:latest",
"tslint-react",
"tslint-microsoft-contrib",
"tslint-eslint-rules",
"tslint-config-prettier"
],
"rules": {
"no-unsafe-any": false,
"strict-boolean-expressions": false,
"missing-jsdoc": false,
"trailing-comma": [true],
"typedef": [
"arrow-parameter",
"variable-declaration",
"parameter",
"property-declaration"
],
"variable-name": [
"check-format"
],
"quotemark": [
"single",
"jsx-double"
],
"interface-name": [
"never-prefix"
],
"member-access": false,
"ordered-imports": [false],
"no-relative-imports": false,
"semicolon": [
"ignore-bound-class-methods"
],
"array-type": ["array-simple"],
// Required so that React Styleguidist works
"no-default-export": false,
// microsoft-tslint-contrib
"import-name": false,
"export-name": false,
"no-import-side-effect": false,
"misnamed-import": false,
"restrict-plus-operand": false,
"no-single-line-block-comment": false,
"react-unused-props-and-state": false,
"react-tsx-curly-spacing": false,
"no-any": false,
"jsx-boolean-value": false,
"prefer-type-cast": false,
"no-reserved-keywords": false
}
}