forked from bogoslavskiy/react-native-tabs-section-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
30 lines (30 loc) · 765 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
{
"extends": [
"tslint:recommended",
"tslint-config-airbnb"
],
"linterOptions": {
"exclude": [
"node_modules/**/*",
"example/**/*",
"lib/**/*"
]
},
"rules": {
"array-type": [true, "array"],
"trailing-comma": [false, {"multiline": "never", "singleline": "never"}],
"align": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"max-line-length": false,
"member-access": false,
"member-ordering": false,
"no-var-requires": false,
"variable-name": false,
"import-name": false,
"no-boolean-literal-compare": false,
"no-console": [true, "debug", "log"],
"no-else-after-return": [true, "allow-else-if"],
"object-shorthand-properties-first": false
}
}