Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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
The npm package gulp-csslint-scss-reporter receives a total of 0 weekly downloads. As such, gulp-csslint-scss-reporter popularity was classified as not popular.
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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.