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
- Host: GitHub
- URL: https://github.com/clarifynl/stylelint-config-clarify
- Owner: clarifynl
- License: mit
- Created: 2023-02-16T08:46:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T15:04:35.000Z (about 2 years ago)
- Last Synced: 2025-05-20T00:11:34.944Z (about 1 year ago)
- Language: JavaScript
- Size: 587 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"]
}
```