gulp-coffeelint
Advanced tools
Changelog
0.5.0 (2015-05-14)
results
-key now holds an instance of Coffeelint::ErrorReport
(see https://github.com/clutchski/coffeelint/blob/master/src/error_report.coffee) instead of an Array
. You may call results.getErrors(filename)
to get the old Array
backcoffeelint.reporter('default')
now uses the default CoffeeLint reporter instead of the coffeelint-stylish
reporter. You may run coffeelint.reporter()
or coffeelint.reporter('coffeelint-stylish')
to use the stylish reporterChangelog
0.4.0 (2014-09-01)
file.success
to true
and fail fail
-reporter only when file.errorCount
is 0, even if files.warningCount > 0
. To achieve the previous behavior of the fail
-reporter you
may use the failOnWarning
-reporter.(b30c0e4c)