Adding more tests

This makes sure the common case is tested
This commit is contained in:
Phips Peter
2015-01-29 16:38:02 -08:00
parent 6e31806aab
commit 3ec388cb73
+9 -1
View File
@@ -44,4 +44,12 @@ gulp.task('tslint-json', function(){
}
}))
.pipe(tslint.report('prose'));;
});
});
gulp.task("lint", () => {
return gulp.src(["gulpfile.ts", "{src,test}/**/*.ts"])
.pipe(tslint())
.pipe(tslint.report("verbose", {
emitError: true
}));
});