0.0.1 • Published 4 years ago

@propelinc/stylelint-config v0.0.1

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
4 years ago

@propelinc/stylelint-config

This package contains Propel's shared Stylelint config. These rules are specifically for projects built on Sass using the SCSS syntax.

Setup

Install

You'll need to install Stylelint and a set of plugins along with this library. Use this shortcut to install the library and its required peer dependencies.

npx install-peerdeps --dev @propelinc/stylelint-config

Update your .stylelintrc.js

Change your Stylelint configuration to extend from @propelinc/stylelint-config.

module.exports = {
  extends: ['@propelinc/stylelint-config'],
  rules: {
    // Override any rules here
  },
};