Registry / testing / gulp-scss-lint-stylish

gulp-scss-lint-stylish

JSON →
library1.0.1jsnpmunverified

Stylish reporter for gulp-scss-lint that mimics the visual style of jshint-stylish. Version 1.0.1, last released in 2015, with no releases since. It is a small wrapper that formats SCSS lint results in a readable, colorized output. Unlike other reporters, it focuses on providing a consistent experience for developers familiar with jshint-stylish. The package depends on gulp-scss-lint and is designed for use in Gulp-based workflows. It requires Node >=0.12, is not actively maintained, and may have compatibility issues with modern Node versions.

npm install gulp-scss-lint-stylish
INSTALL
IMPORT
SIG · GULP-SCSS-LINT-STY
G
gulp-scss-lint-stylish
testingjavascriptv1.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default
const scssLintStylish = require('gulp-scss-lint-stylish');
The package exports a single function. No named exports exist.
import
import scssLintStylish from 'gulp-scss-lint-stylish';
import { scssLintStylish } from 'gulp-scss-lint-stylish';
This is a CommonJS module, but ESM interop may work with a default import. Named import will fail.

Shows how to configure gulp-scss-lint to use the stylish reporter via the customReport option.

const gulp = require('gulp'); const scssLint = require('gulp-scss-lint'); const scssLintStylish = require('gulp-scss-lint-stylish'); gulp.task('scss-lint', function() { return gulp.src('src/scss/**/*.scss') .pipe(scssLint({ customReport: scssLintStylish })); });
Debug
Known issues
deprecatedgulp-scss-lint-stylish is no longer maintained. It depends on outdated dependencies and may not work with newer Node versions.
fix
Consider using a modern alternative like gulp-sass-lint or a PostCSS-based linter.
affects: >=0.0.0
breakingNode >=0.12 required. This package uses old APIs and may break on Node >=10.
fix
Upgrade to a maintained package or test thoroughly on your Node version.
affects: >=1.0.0
gotchaThe reporter must be passed via the 'customReport' option of gulp-scss-lint, not treated as a standalone plugin.
fix
Use as shown in the quickstart: pipe through gulp-scss-lint with customReport set.
affects: >=0.0.0
Errors
Common errors & fixes
Error: Cannot find module 'gulp-scss-lint-stylish'
Package not installed or missing from node_modules.
fix
Run 'npm install gulp-scss-lint-stylish --save-dev'.
TypeError: scssLint is not a function
gulp-scss-lint is not installed or incorrectly required.
fix
Run 'npm install gulp-scss-lint --save-dev' and verify require path.
Upgrade
Version history
1.0.1latest on npm
Audit
Dependencies
gulp-scss-lintrequiredThis reporter is designed to be used as the custom report option for gulp-scss-lint.
Agent activity
4 hits · last 30 days
node
4
Resources
gulp-scss-lint-stylish — npm install gulp-scss-lint-stylish · libregistry