Package Exports
- gulp-sass-lint
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-sass-lint) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Gulp Sass Lint 
Install
npm install gulp-sass-lint@{{version-number}}where {{version number}} is the version number in package.json
Sample
'use strict';
var gulp = require('gulp'),
sassLint = require('gulp-sass-lint');
gulp.task('default', function () {
gulp.src('sass/**/*.s+(a|c)ss')
.pipe(sassLint())
.pipe(sassLint.format())
.pipe(sassLint.failOnError())
});