.stylelintrc.js 356 B

1234567891011121314151617
  1. module.exports = {
  2. extends: ['stylelint-config-recess-order', 'stylelint-config-prettier'],
  3. overrides: [
  4. {
  5. files: ['**/*.html', '**/*.vue'],
  6. customSyntax: 'postcss-html',
  7. },
  8. {
  9. files: ['**/*.js'],
  10. customSyntax: 'postcss-jsx',
  11. },
  12. {
  13. files: ['**/*.scss'],
  14. customSyntax: 'postcss-scss',
  15. },
  16. ],
  17. }