...

/

Stylelint and Prettier

Stylelint and Prettier

Learn to install stylelint and prettier plugins in a Vue project.

We'll cover the following...

There are a few plugins we need to install to enhance Stylelint’s functionality.

  • The stylelint-config-css-modules plugin enables css module-specific syntax.
  • The stylelint-config-prettier plugin disables rules conflicting with Prettier.
  • The stylelint-config-recess-order plugin sorts CSS properties in a specific order.
  • The
...