Remove configuration parameter from tslint:test task which incorrectly attempted to add a rule but instead set only a single rule which gave false positive lint passes.

This commit is contained in:
Matt Mazzola 2016-09-07 17:14:59 -07:00
Родитель d619ea0f15
Коммит f515e24b8a
1 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -155,12 +155,7 @@ gulp.task('tslint:build', 'Run TSLint on src', function () {
gulp.task('tslint:test', 'Run TSLint on src and tests', function () {
return gulp.src(["src/**/*.ts", "test/**/*.ts"])
.pipe(tslint({
formatter: "verbose",
configuration: {
rules: {
"no-console": false
}
}
formatter: "verbose"
}))
.pipe(tslint.report());
});