forked from jeremybarbet/react-native-modalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
29 lines (29 loc) · 875 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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["node_modules/**/*", "docs/**/*", "examples/**/*", "lib/**/*"]
},
"rules": {
"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"],
"object-shorthand-properties-first": false,
"completed-docs": false,
"interface-name": false,
"missing-jsdoc": false,
"no-relative-imports": false,
"no-reserved-keywords": false,
"no-unsafe-any": false,
"quotemark": [true, "single", "jsx-double"],
"strict-boolean-expressions": false,
"typedef": false
}
}