@clarifynl/stylelint-config-clarify
v0.16.6
Published
Clarify Stylelint config
Downloads
321
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:
"stylelint": {
"extends": ["@clarifynl/stylelint-config-clarify"]
}
Or, for BEM-based projects:
"stylelint": {
"extends": ["@clarifynl/stylelint-config-clarify/bem"]
}