1.6.0 • Published 5 years ago

@10stars/stylelint-config v1.6.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

@10stars/stylelint-config

Install

npm i -g \
  stylelint \
  @10stars/stylelint-config

Set up your global stylelint rules

Copy user-config/.stylelintrc.js to ~/.stylelintrc.js

cp user-config/.stylelintrc.js ~/.stylelintrc.js

Extending the config

Simply add a "rules" key to your config, then add your overrides and additions there.

For example, to turn off the block-no-empty rule:

module.exports = {
  extends: "/usr/local/lib/node_modules/@10stars/stylelint-config", // use only this
  rules: {
    "block-no-empty": null,
  },
}