volar.config.js 424 B

123456789101112131415
  1. /* eslint-disable no-undef */
  2. /** @type {import('@volar-plugins/prettier')} */
  3. const { volarPrettierPlugin } = require('@volar-plugins/prettier')
  4. module.exports = {
  5. plugins: [
  6. volarPrettierPlugin({
  7. languages: ['html', 'css', 'scss', 'typescript', 'javascript'],
  8. html: {
  9. breakContentsFromTags: true
  10. },
  11. useVscodeIndentation: true
  12. })
  13. ]
  14. }