Skip to content

Commit

Permalink
fix(tasks): address missing semicolon jshint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cueedee committed Oct 4, 2017
1 parent 77a3c96 commit 0614186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/coffee_jshint.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports = function(grunt) {
var errors = files.map(function(path) {
return hintFile(path, options);
}).filter( function(file_errors) {
return file_errors !== ''
return file_errors !== '';
});

if (errors.length) {
Expand Down

0 comments on commit 0614186

Please sign in to comment.