stylelint-config-modern
v0.1.0
Published
Modern CSS shareable config for Stylelint
Maintainers
Readme
stylelint-config-modern
The modern CSS shareable config for Stylelint.
It builds on Stylelint's standard config and turns on additional lint rules to enforce modern CSS features and conventions.
It works alongside the textual rules and examples at moderncss.ai.
Installation
npm install stylelint-config-modern --save-dev(or bun, pnpm etc.)
Usage
Add it to your stylelint config:
export default {
"extends": [
"stylelint-config-standard",
+ "stylelint-config-modern"
],
}