stylelint.config.js 275 B

123456789101112
  1. module.exports = {
  2. customSyntax: 'postcss-html',
  3. extends: [
  4. 'stylelint-config-standard',
  5. 'stylelint-config-recommended-vue',
  6. 'stylelint-config-prettier',
  7. ],
  8. // add your custom config here
  9. // https://stylelint.io/user-guide/configuration
  10. rules: {},
  11. };