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

https://github.com/clarifynl/stylelint-config-clarify

Stylelint configuration for Clarify projects
https://github.com/clarifynl/stylelint-config-clarify

Last synced: about 1 year ago
JSON representation

Stylelint configuration for Clarify projects

Awesome Lists containing this project

README

          

# Clarify stylelint config

This is a linter configuration to use when developing Sass-based projects. It uses stylelint and it's based on stylelint's recommended config that helps you avoid errors.

It provides two configurations, one for regular Sass projects and one specifically for BEM based Sass projects.

## Installation:

```
npm install --save-dev @clarifynl/stylelint-config-clarify
```

In your `package.json`, add the following:

```js
"stylelint": {
"extends": ["@clarifynl/stylelint-config-clarify"]
}
```

Or, for BEM-based projects:
```js
"stylelint": {
"extends": ["@clarifynl/stylelint-config-clarify/bem"]
}
```