Skip to content

Commit

Permalink
TSLint: Disable "prefer-for-of" rule
Browse files Browse the repository at this point in the history
The glimmer build pipeline transpiles for..of loops using Babel, which is not able to optimize looping over an array properly.
  • Loading branch information
Turbo87 committed May 2, 2017
1 parent 54f2f6c commit fabd696
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"no-empty": false,
"only-arrow-functions": [false],
"no-shadowed-variable": false,
"prefer-for-of": false,
"prefer-const": false,
"object-literal-key-quotes": [true, "as-needed"],
"member-access": [true, "no-public"]
Expand Down

0 comments on commit fabd696

Please sign in to comment.