1.1.0 • Published 4 years ago

stylelint-config-activepipe v1.1.0

Weekly downloads
31
License
ISC
Repository
github
Last release
4 years ago

stylelint-config-activepipe

Shared CSS formatting and quality configuration for use in ActivePipe projects

what it does

  • Specifies stylelint/prettier dependencies
  • Shared configuration for the above dependencies
  • Code quality rules for CSS
  • Plugins for eslint and stylelint

quick start

  1. npm install --save-dev this package's peerDepencies (see below)
  2. save module.exports = { extends: 'stylelint-config-activepipe' } to stylelint.config.js in your project root
  3. save module.exports = require('eslint-config-stylelint/prettierrc') to .prettierrc.js in your project root (if it doesn't already exist)
  4. wonderful development success

installing peerDependencies

The following command will install (or update) a package's peer dependencies in your project:

npm info stylelint-config-activepipe peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev