Luismahou / grunt-hashres

Hashes your js and css files and rename the <script> and <link> declarations that refer to them in your html/php/etc files.
MIT License
115 stars 41 forks source link

Fix missing semicolon lint error #50

Open dherbst opened 9 years ago

dherbst commented 9 years ago

Running tests off 41573e47dd5e76372a36d639c2e35335e2160991 results in

Running "jshint:all" (jshint) task
Linting tasks/hashresHelper.js ...ERROR
[L80:C74] W033: Missing semicolon.
          grunt.log.debug('Substituting ' + value[0] + ' by ' + value[1]) 
[L83:C92] W033: Missing semicolon.
          grunt.log.debug('Substituting ' + nameToNameSearch[value[0]] + ' by ' + value[1]) 

Warning: Task "jshint:all" failed. Use --force to continue.

Aborted due to warnings.