Open TheDutchCoder opened 9 years ago
Hi!
gulp-scss-lint doesn't have own error codes for warnings and errors because it doesn't throw exceptions with them.
Hi Juan,
First, thank you for share your package,
related to this question, i followed the guide, but my set is not working
</ var gulp = require('gulp'), scsslint = require('gulp-scss-lint'),
gulp.task('scss-lint', function() { gulp.src('./assets/scss/demo/_lint-demo.scss') .pipe(scsslint({})); });
gulp.task('default', ['scss-lint']); />
the scss-lint never provide any feedback in following two cases,
Feeback: [12:21:14] Starting 'scss-lint'... [12:21:14] Finished 'scss-lint' after 7.83 ms [12:21:14] Starting 'default'... [12:21:14] Finished 'default' after 51 μs
could you info me what i missed?
Many thanks
Thank for your feedback
verbose
options a run the output command by gulp-scss-lint?, thanks!Thanks for the feedback, Juan,
about the issue i have right now, it could be my asking this in a wrong way, let me correct myself, :)
if i do not have the file, i run "scss-lint", i get
"No SCSS files matched by the patterns:"
and i have not successfully received any scss-lint validation info (like this one) with gulp-scss-lint. that's my gulp setting issue i need your help : (
my understanding is "verbose" is for debugger gulp-scss-lint, not for showing SCSS-lint validation info, it's that correct?
Many Thanks
gulp-scss-lint doesn't run anything because gulp.src doesn't send something that doesn't exist so in gulp-scss-lint I can't run scss-lint without files.
Yes, verbose
shows the scsslint command, you can copy it a run it outside gulp to see the original scss-lint output. With this option you can check what is wrong in that command.
Hey,
Can you please document your list of error codes?
We're struggling figuring out what's going on, as both errors and warnings seem to throw code 1, whereas scss-lint itself uses different codes for different types of events: https://github.com/brigade/scss-lint#exit-status-codes
Thanks!