Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
gulp-csslint-scss-reporter
Advanced tools
A console reporter for csslint that maps errors back to the original scss files using sourcemaps
A console reporter for csslint that maps errors back to the original scss files using scss source maps.
Install gulp-csslint-scss-reporter
as a development dependency.
npm install --save-dev gulp-csslint-scss-reporter
gulp-csslint
, gulp-sourcemaps
, and gulp-sass
should also be installed.
Scss source maps are required in order to map errors back onto the original scss
files. If scss source maps are not available, an error will be thrown.
var gulp = require('gulp');
var sass = require('gulp-sass');
var csslint = require('gulp-csslint');
var sourcemaps = require('gulp-sourcemaps');
var scssReporter = require('gulp-csslint-scss-reporter');
gulp.task('sass', function () {
return gulp.src('src/**/*.scss')
.pipe(sourcemaps.init()) // sourcemaps are required
.pipe(sass())
.pipe(csslint())
.pipe(scssReporter())
.pipe(gulp.dest('build'));
});
Errors will be reported in all files and @imports
.
Type: String
or Array
A valid pattern
for globule.isMatch()
.
If an error is in an imported file, you can specify a whitelist pattern
to filter out unwanted errors in the imported files. Only imported files that match the pattern will emit errors. This only applies to imports, any file that is in the pipeline directly will always have linting errors reported.
For example, if you @import
an external sass/scss file from bower_components
and don't care about linting errors in it, you can whitelist the results to only your sources.
src/example.scss
@import "bower_components/my-module/src/hello.scss";
@import "bower_components/my-module/src/world.scss";
gulpfile.js
var gulp = require('gulp');
var sourcemaps = require('gulp-sourcemaps');
var sass = require('gulp-sass');
var csslint = require('gulp-csslint');
var scssReporter = require('gulp-csslint-scss-reporter');
gulp.task('sass', function () {
return gulp.src('src/**/*.scss')
.pipe(sourcemaps.init()) // sourcemaps are required
.pipe(sass())
.pipe(csslint())
.pipe(sassReporter('src/**/*.scss')) // errors in bower_components will be ignored
.pipe(gulp.dest('build'));
});
Errors will be written to the console as they are encountered. An exception will be thrown after reporting all errors.
To capture that exception so that the pipline will continue, add a listener to the error
event and then you can handle the error as you like.
var gulp = require('gulp');
var sourcemaps = require('gulp-sourcemaps');
var sass = require('gulp-sass');
var csslint = require('gulp-csslint');
var scssReporter = require('gulp-csslint-scss-reporter');
var shouldThrow = true;
gulp.task('sass', function () {
return gulp.src('src/**/*.scss')
.pipe(sourcemaps.init()) // sourcemaps are required
.pipe(sass())
.pipe(csslint())
.pipe(scssReporter())
.on('error', function (err) {
// decide whether to throw the error
if (shouldThrow) {
throw err;
}
})
.pipe(gulp.dest('build'));
});
FAQs
A console reporter for csslint that maps errors back to the original scss files using sourcemaps
We found that gulp-csslint-scss-reporter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.