How UCLA Radio writes CSS and Sass. We use this on our website!
You can add it to your project by installing
stylelint
first, then
stylelint-config-uclaradio
,
then adding it to your .stylelintrc
file.
What you put in your terminal:
# We prefer yarn, but npm also works
yarn add --dev stylelint
yarn add --dev stylelint-config-uclaradio
Then configure your .stylelintrc.json
(or alternative) as follows:
{
"extends": "stylelint-config-uclaradio"
}