Skip to content

Stylelint

Rule

Ensure that common good practices are respected in your stylesheets, install by running:

npm install --save-dev stylelint stylelint-config-standard-scss

Here is an example of a good stylelint config:

/** @type{import('stylelint').Config} */
export default {
  extends: ["stylelint-config-standard-scss"],
};

And run the following command to check:

npx stylelint "**/*.scss"

Reference