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
3
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.

  • 0.1.1
  • Source
  • npm
  • Socket score

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

stylelint-ackmann-dickenson

Extends stylelint-config-standard.

Turns on additional rules to enforce A&D style conventions. To see everything that this config adds, please see the rules documentation.

Installation

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

Usage

After installing stylelint-ackmann-dickenson 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-postcss postcss-reporter
var gulp = require('gulp');
var postcss = require('gulp-postcss');

gulp.task('lint:styles', function() {
  return gulp
    .src('**/*.scss')
    .pipe(
      postcss([
        require('stylelint')(),
        require('postcss-reporter')({ clearReportedMessages: true })
      ])
    );
});
gulp lint:styles

Keywords

FAQs

Package last updated on 07 Jun 2018

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