forked from doomsower/react-native-modal-popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
36 lines (36 loc) · 1.44 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
{
"extends": ["tslint:latest", "tslint-react", "tslint-eslint-rules"],
"rules": {
"arrow-parens": false,
"arrow-return-shorthand": [false],
"brace-style": [ true, "1tbs", { "allowSingleLine": true}],
"comment-format": [true, "check-space"],
"import-blacklist": [true, "rxjs"],
"interface-name": false,
"jsx-boolean-value": [true, "never"],
"jsx-no-multiline-js": false,
"member-access": false,
"member-ordering": [false],
"newline-before-return": false,
"no-any": false,
"no-inferrable-types": [true],
"no-import-side-effect": [true, {"ignore-module": "^rxjs/"}],
"no-invalid-this": [true, "check-function-in-method"],
"no-null-keyword": false,
"no-require-imports": false,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-variable": [true, "react"],
"object-curly-spacing": [true, "always"],
"object-literal-sort-keys": false,
"only-arrow-functions": [true, "allow-declarations"],
"ordered-imports": true,
"prefer-method-signature": false,
"prefer-template": [true, "allow-single-concat"],
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"triple-equals": [true, "allow-null-check"],
"typedef": [true,"parameter", "property-declaration", "member-variable-declaration"],
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"]
}
}