Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/twbs/stylelint-config-twbs-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1bc2eacf5d100f1505e56cb6cdae50ecf89d8835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# stylelint-config-bootstrap

Default stylelint config used by Bootstrap.

## Installation

```bash
npm install stylelint-config-twbs-bootstrap --save-dev
# Or with yarn:
yarn add stylelint-config-twbs-bootstrap --dev
```

## Usage

We provide a config for both CSS and SCSS. You can choose which one you would like to extend in your configuration:

### CSS

```json
{
  "extends": "stylelint-config-bootstrap/css"
}
```

### SCSS

```json
{
  "extends": "stylelint-config-bootstrap/scss"
}
```