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-modulesplugin enables css module-specific syntax. - The 
stylelint-config-prettierplugin disables rules conflicting with Prettier. - The 
stylelint-config-recess-orderplugin sorts CSS properties in a specific order. - The 
stylelint-config-standardplugin turns on 
 Ask