Skip to content

Commit 1255e88

Browse files
committedAug 30, 2018
Make tslint's array-type option to be false
After this commit we can use T[] type instead of Array<T>
1 parent ca21de2 commit 1255e88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎tslint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"interface-name": false,
88
"no-console": false,
99
"object-literal-sort-keys": false,
10-
"no-var-requires": false
10+
"no-var-requires": false,
11+
"array-type": false
1112
},
1213
"jsRules": {
1314
"no-console": false,

0 commit comments

Comments
 (0)
Please sign in to comment.