Airbnb's stylelint config, following our styleguide
npm install stylelint-config-airbnb> Airbnb shareable config for stylelint.
``console`
npm install stylelint-config-airbnb
Set your stylelint config to:
`json`
{
"extends": "stylelint-config-airbnb"
}
Simply add a "rules" key to your config and add your overrides there.
For example, to change the indentation to tabs:
`json``
{
"extends": "stylelint-config-airbnb",
"rules": {
"indentation": "tab"
}
}