A Grunt task plugin to run sass-lint on your Sass/SCSS files. Version 0.0.4 is the last release, with no apparent update cadence. It wraps the sass-lint library and provides a config option to specify a lint configuration file. Compared to alternatives like grunt-sass-lint, this plugin is minimal but lacks active maintenance. It requires Node >= 5.3.0 and Grunt.
npm install grunt-contrib-sass-lintNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic Grunt configuration to lint all .scss files under src/ with a custom config file.
Migrate to stylelint or another modern Sass linter.
Ensure config file exists at expected location or pass explicit path.
Use grunt.file.src or similar array.
Run `npm install grunt-contrib-sass-lint --save-dev` and add `grunt.loadNpmTasks('grunt-contrib-sass-lint');` to Gruntfile.Run `npm install sass-lint --save-dev` (or `--save` depending on needs).
Create a `.sass-lint.yml` file or set the `config` option to an existing file path.