Gulp plugin wrapping 9e-sass-lint to lint Sass/SCSS files. Stable version 0.0.8, last released 2015. No active maintenance. Key differentiator: integrates 9e-sass-lint into Gulp pipelines with reporter support. Alternatives: gulp-sass-lint (more popular, maintained).
npm install gulp-9e-sass-lintNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Set up a Gulp task that lints Sass files using gulp-9e-sass-lint and reports errors.
npm install gulp-sass-lint --save-dev and replace require('gulp-9e-sass-lint') with require('gulp-sass-lint').Use a legacy Node version or migrate to a maintained alternative.
Always pass breakOnError: true if you want the task to fail on lint errors.
Use glob pattern **/*.sass or consider alternative plugin.
Run npm install gulp-9e-sass-lint --save-dev
Ensure const sassLint = require('gulp-9e-sass-lint'); is correct.Check that sassLint.reporter is called with exactly 'default' and a valid options object.
Ensure .pipe(sassLint()) is called before .pipe(sassLint.reporter(...)).