| 123456789101112131415 |
- /* eslint-disable no-undef */
- /** @type {import('@volar-plugins/prettier')} */
- const { volarPrettierPlugin } = require('@volar-plugins/prettier')
- module.exports = {
- plugins: [
- volarPrettierPlugin({
- languages: ['html', 'css', 'scss', 'typescript', 'javascript'],
- html: {
- breakContentsFromTags: true
- },
- useVscodeIndentation: true
- })
- ]
- }
|