forked from fathyb/parcel-plugin-typescript
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtslint.json
More file actions
24 lines (24 loc) · 714 Bytes
/
tslint.json
File metadata and controls
24 lines (24 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": ["tslint:recommended", "tslint-eslint-rules"],
"rules": {
"no-duplicate-variable": true,
"no-string-literal": false,
"no-console": [false],
"whitespace": [
true,
"check-operator", "check-separator", "check-type", "check-typecast"
],
"trailing-comma": [false],
"object-literal-sort-keys": false,
"interface-name": [true, "never-prefix"],
"one-line": [true, "check-open-brace", "check-whitespace"],
"semicolon": [true, "never"],
"quotemark": [true, "single", "avoid-escape"],
"indent": [true, "tabs"],
"no-namespace": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"only-arrow-functions": false,
"max-classes-per-file": false,
"no-bitwise": false
}
}