File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ gulpHtmlhintInline.defaultReporter = function(file) {
143
143
if ( report . success ) { log ( color . green ( file . path + ' lint free.' ) ) ; }
144
144
145
145
if ( ! report . success ) {
146
- log ( color . cyan ( report . length ) + ' error' + ( report . length === 1 ? '' : 's' ) + ' found' ) ;
146
+ log ( color . cyan ( report . length ) + ' error' + ( report . length === 1 ? '' : 's' ) + ' found at ' + color . gray ( file . path ) ) ;
147
147
148
148
report . forEach ( function ( message ) {
149
149
var evidence = message . evidence ,
@@ -176,7 +176,7 @@ gulpHtmlhintInline.failReporter = function() {
176
176
( fails = fails || [ ] ) . push ( file . path ) ;
177
177
178
178
if ( file . htmlhint_inline && file . htmlhint_inline . length !== 0 ) {
179
- error = new PluginError ( PLUGIN_NAME , {
179
+ error = new PluginError ( PLUGIN_NAME , {
180
180
message : PLUGIN_NAME + ' failed for: ' + fails . join ( ', ' ) ,
181
181
showStack : false
182
182
} ) ;
You can’t perform that action at this time.
0 commit comments