An open API service indexing awesome lists of open source software.

https://github.com/levdbas/stylelint-basebuilder


https://github.com/levdbas/stylelint-basebuilder

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# Semantic rules for your CSS

Code should always be written in such a way that makes it look like a single
person wrote it, no matter how many people have contributed and that is the
purpose of this set of rules powered by
[stylelint](https://github.com/stylelint/stylelint).

## Installation

You need to have `stylelint` and this config as part of your `devDependencies`.

`yarn add stylelint stylelint-basebuilder -D`

## Usage

### Load everything

To use all the rules all at once add `stylelint-basebuilder` to your
`extends` property in `.stylelintrc`.

```json
{
"extends": [
"stylelint-basebuilder"
]
}
```

### Override specific rules

To override the rules set by `stylelint-basebuilder` you need to define your
own rules and set them as shown below.

```json
{
"extends": [
"stylelint-basebuilder"
],
"rules": {
"indentation": 2
}
}
```