# stylelint-config-airbnb

> Airbnb shareable config for stylelint.

## Installation

```console
npm install stylelint-config-airbnb
```

## Usage

Set your stylelint config to:

```json
{
  "extends": "stylelint-config-airbnb"
}
```

### Extending the config

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"
  }
}
```

## [Changelog](CHANGELOG.md)

## [License](LICENSE)
