stylelint-max-lines
v0.1.0
Published
Limit the count of a lines.
Downloads
15,855
Maintainers
Readme
stylelint-max-lines
Limit the count of a lines.
Installation
- If you haven't, install [stylelint]:
npm install stylelint --save-dev
- Install
stylelint-max-lines
:
npm install stylelint-max-lines --save-dev
Usage
Add stylelint-max-lines
to your stylelint config plugins
array, then add rules you need to the rules list. All rules from stylelint-max-lines need to be namespaced with pitcher
.
{
"plugins": [
"stylelint-max-lines"
],
"rules": {
"pitcher/max-lines": 300
}
}