New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@ackmann-dickenson/stylelint-config

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ackmann-dickenson/stylelint-config

Stylelint configuration based on A&D style conventions.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

@ackmann-dickenson/stylelint-config

npm

Extends stylelint-config-standard. Turns on additional rules to enforce A&D style conventions.

Installation

$ npm install --save-dev stylelint @ackmann-dickenson/stylelint-config

Usage

After installing both stylelint and the configuration packages set your .stylelintrc.js config file to:

module.exports = {
  extends: '@ackmann-dickenson/stylelint-config'
};

Your build process will vary based on the tools used in your project.

NPM

{
  "scripts": {
    "lint:styles": "stylelint '**/*.{css,scss}'"
  }
}
$ npm run lint:styles

Gulp

$ npm install --save-dev gulp gulp-stylelint
var gulp = require('gulp');
var gulpStylelint = require('gulp-stylelint');

gulp.task('lint:styles', function() {
  return gulp
    .src('**/*.scss')
    .pipe(
      gulpStylelint({
        reporters: [{ formatter: 'string', console: true }]
      })
    );
});
$ gulp lint:styles

Rules

To see everything that this config adds please refer to the rules documentation.

Keywords

FAQs

Package last updated on 07 Oct 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc