-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
32 lines (32 loc) · 973 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
{
"extends": ["tslint:recommended", "tslint-react"],
"linterOptions": {
"exclude": [
"node_modules/**",
"src/cordova-wrapper/node_modules/**",
"src/cordova-wrapper/plugins/**"
]
},
"rules": {
"arrow-parens": false,
"curly": [true, "ignore-same-line"],
"interface-name" : true,
"jsx-alignment": false,
"jsx-curly-spacing": false,
"jsx-no-multiline-js": false,
"jsx-wrap-multiline": false,
"max-classes-per-file": false,
"no-console": false,
"no-debugger": false,
"no-bitwise": false,
"no-empty-interface": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"no-var-requires": false,
"object-literal-sort-keys": false,
"one-line": false,
"ordered-imports": false,
"trailing-comma": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
"semicolon": [true, "always"]
}
}