generated from scriptex/initial-commit
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
25 lines (25 loc) · 949 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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rules": {
"trailing-comma": false,
"no-console": [true, "time", "timeEnd", "trace", "log"],
"no-consecutive-blank-lines": [true, 2],
"max-line-length": false,
"no-string-literal": false,
"no-use-before-declare": true,
"object-literal-sort-keys": false,
"ordered-imports": false,
"interface-name": false,
"quotemark": [true, "single", "avoid-escape", "jsx-double"],
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case", "ban-keywords", "check-format"],
"space-before-function-paren": [true, "never"],
"member-ordering": false,
"import-blacklist": [true, "rxjs"],
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"no-import-side-effect": [true, { "ignore-module": "\\.scss$" }],
"typedef": [true, "call-signature", "parameter", "member-variable-declaration"],
"jsx-curly-spacing": [2, "always"],
"no-bitwise": false
}
}