TSLint: Fixed Syntax Warning (#37036)

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/
This commit is contained in:
Max Schmitt 2017-10-28 11:47:46 +02:00 committed by Erich Gamma
parent 06f5611617
commit f4aa124730

View file

@ -10,6 +10,7 @@
"curly": true,
"class-name": true,
"semicolon": [
true,
"always"
],
"triple-equals": true,
@ -430,4 +431,4 @@
"duplicate-imports": true,
"translation-remind": true
}
}
}