Socket
Socket
Sign inDemoInstall

@jaybirdgroup/jb-gulp-lesshint-stylish

Package Overview
Dependencies
23
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @jaybirdgroup/jb-gulp-lesshint-stylish

Stylish reporter for gulp-lesshint


Version published
Maintainers
1
Install size
184 kB
Created

Readme

Source

Gulp Lesshint Stylish reporter

Stylish reporter for gulp-lesshint, uses jshint-stylish to do the actual reporting:

Fork from here.

Install

$ npm install --save-dev gulp-lesshint-stylish

Usage

var lesshint = require('gulp-lesshint');
var noop = function () {};
var stylish = require('gulp-lesshint-stylish');

gulp.task('default', function () {
	gulp.src([ 'file.less' ])
		.pipe(lesshint())      // enforce style guide
		.on('error', noop) // don't stop on error
		.pipe(stylish());  // log style errors
});

Credits

Based on the work of Christoph Werner: gulp-jscs-stylish

Keywords

FAQs

Last updated on 12 Oct 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc