-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
51 lines (50 loc) · 1.29 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
{
"extends": [
"tslint:latest",
"tslint-react",
"tslint-microsoft-contrib"
],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts"
]
},
"rules": {
"no-empty-interface": false,
"jsx-no-lambda": false,
"no-console": false,
"no-consecutive-blank-lines": true,
"lines-between-class-members": true,
"semicolon": [
true,
"always"
],
"linebreak-style": false,
"missing-jsdoc": false,
"no-submodule-imports": false,
"no-implicit-dependencies": false,
"no-import-side-effect": false,
"no-default-export": false,
"typedef": false,
"export-name": false,
"import-name": false,
"no-backbone-get-set-outside-model": false,
"no-relative-imports": false,
"react-a11y-role-has-required-aria-props": false,
"react-this-binding-issue": false,
"jsx-no-multiline-js": false,
"react-a11y-event-has-role": false,
"no-non-null-assertion": false,
"completed-docs": false,
"match-default-export-name": false,
"no-unsafe-any": false,
"strict-boolean-expressions": false,
"react-a11y-anchors": false,
"no-parameter-properties": false,
"no-increment-decrement": false
},
"rulesDirectory": [
"node_modules/tslint-lines-between-class-members"
]
}