mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 14:44:13 +00:00
dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
/** @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,
|
|
}),
|
|
],
|
|
};
|