Skip to content

Commit

Permalink
TSLint: Fixed Syntax Warning (microsoft#37036)
Browse files Browse the repository at this point in the history
Fixed incorrect syntax in the semicolon setting. TSlint does give a warning, if you set the set "always" as the first parameter. It expects a boolean as the first and "always" as the second.
More information you will find here: https://palantir.github.io/tslint/rules/semicolon/
  • Loading branch information
mxschmitt authored and egamma committed Oct 28, 2017
1 parent 06f5611 commit f4aa124
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"curly": true,
"class-name": true,
"semicolon": [
true,
"always"
],
"triple-equals": true,
Expand Down Expand Up @@ -430,4 +431,4 @@
"duplicate-imports": true,
"translation-remind": true
}
}
}

0 comments on commit f4aa124

Please sign in to comment.