@skyscanner/stylelint-plugin-backpack

Stylelint configuration for Backpack development

Usage no npm install needed!

<script type="module">
  import skyscannerStylelintPluginBackpack from 'https://cdn.skypack.dev/@skyscanner/stylelint-plugin-backpack';
</script>

README

stylelint-plugin-backpack

Build Status npm version

Stylelint plugin to prevent magic arbitrary values and promote the use of Backpack tokens.

Installation

npm install @skyscanner/stylelint-plugin-backpack --save-dev

Usage

Add @skyscanner/stylelint-plugin-backpack to your stylelint config plugins array,

{
  "plugins": ["@skyscanner/stylelint-plugin-backpack"]
}

Once you have added the plugin, you will need to add the rules you wish to use to your rules config. All rules from @skyscanner/stylelint-plugin-backpack need to be namespaced with backpack.

Like so:

// .stylelintrc
{
  "rules": {
    "backpack/use-colors": true,
    "backpack/use-tokens": true
  }
}