We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1544e85 commit 05417d7Copy full SHA for 05417d7
tslint.json
@@ -1,13 +1,29 @@
1
{
2
- "extends": "tslint:latest",
3
- "rules": {
4
- "one-line": {
5
- "check-open-brace": false
6
- },
7
- "variable-name": {
8
- "check-format": {
9
- "allow-leading-underscore": true
10
- }
11
12
+ "extends": "tslint:latest",
+ "rules": {
+ "max-line-length": [
+ true,
+ 80
+ ],
+ "one-line": [
+ "check-catch",
+ "check-finally",
+ "check-else",
13
+ "check-whitespace"
14
15
+ "trailing-comma": [
16
17
+ {
18
+ "multiline": "never",
19
+ "singleline": "never"
20
+ }
21
22
+ "variable-name": [
23
24
+ "check-format",
25
+ "allow-leading-underscore",
26
+ "ban-keywords"
27
+ ]
28
29
}
0 commit comments