Skip to content

Commit

Permalink
Enforce TSLint. Closes #456 (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoon authored Jul 16, 2016
1 parent 4dafbbd commit 53fc1a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ gulp.task('tslint', ['fix-whitespace'], function() {
return gulp.src([paths.src_ts, paths.tests_ts])
.pipe(tslint())
.pipe(tslint.report('prose', {
summarizeFailureOutput: true,
emitError: false
summarizeFailureOutput: true
}));
});

Expand Down
2 changes: 1 addition & 1 deletion src/actions/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ class CommandEsc extends BaseCommand {

@RegisterAction
class CommandCtrlOpenBracket extends CommandEsc {
keys = ["ctrl+["]
keys = ["ctrl+["];
}

class CommandCtrlC extends CommandEsc {
Expand Down

0 comments on commit 53fc1a6

Please sign in to comment.