File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
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
} ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " gulp-htmlhint-inline" ,
3
3
"description" : " Gulp plugin for linting inline html" ,
4
- "version" : " 0.0.6 " ,
4
+ "version" : " 0.0.7 " ,
5
5
"homepage" : " https://github.com/kazu69/gulp-htmlhint-inline" ,
6
6
"main" : " index.js" ,
7
7
"author" : {
You can’t perform that action at this time.
0 commit comments