Gulp plugin to validate .scss files using the Ruby-based scss-lint tool, wrapping it into a Gulp pipeline for linting SCSS stylesheets. Version 1.0.0, last updated 2016, with no recent releases. Works with Node >= 0.10 and requires Ruby and scss_lint gem installed separately. Offers options for config file, bundle exec, reporter output, maxBuffer, and endless mode for watch. Deprecated in favor of sass-lint or stylelint, as scss-lint is no longer maintained by its original authors. Release cadence: single stable release. Key differentiator vs JavaScript-based linters: leverages Ruby scss-lint's rule set.
npm install gulp-scss-lintNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a Gulp task that lints all .scss files in src/, using a custom config file and outputting a JSON report.
Migrate to a JavaScript-based linter like stylelint with scss plugin or sass-lint.
Install Ruby and run `gem install scss_lint` before using this plugin.
Use a child_process polyfill or update plugin; consider migrating to sass-lint.
Increase maxBuffer option (e.g., 307200) in scsslint() config.
Install scss-lint: `gem install scss_lint` and ensure Ruby is in PATH.
Add `maxBuffer: 307200` to the scsslint() options (or higher).
Use `const scsslint = require('gulp-scss-lint');` or `import scsslint from 'gulp-scss-lint';`