-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
41 lines (41 loc) · 941 Bytes
/
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
{
"extends": [
"tslint:latest",
"tslint-react"
],
"rules": {
"whitespace": [
true,
"check-module"
],
"member-ordering": [
true,
{
"order": "fields-first"
}
],
"no-submodule-imports": [
true,
"moment/locale",
"antd/lib",
"firebase",
"core-js/modules"
],
"max-line-length": false,
"object-literal-sort-keys": false,
"no-empty-interface": false,
"typedef": [
true,
"call-signature"
],
"no-implicit-dependencies": [
true,
"dev"
],
"jsx-no-multiline-js": false,
"jsx-equals-spacing": true,
"jsx-self-close": true,
"jsx-space-before-trailing-slash": true,
"jsx-wrap-multiline": true
}
}