bytebeat-composer/.prettierrc.json5

14 lines
380 B
Text
Raw Normal View History

2023-12-23 03:46:48 +01:00
{
2023-12-25 22:56:56 +01:00
printWidth: 100,
2023-12-23 03:46:48 +01:00
useTabs: true,
2023-12-25 18:51:35 +01:00
tabWidth: 3,
2023-12-25 23:00:15 +01:00
// TODO prevent if/for/while without braces
2023-12-23 03:46:48 +01:00
arrowParens: "avoid",
2023-12-25 21:56:34 +01:00
embeddedLanguageFormatting: "off",
// TODO disable formatting css, even in html/pug
2023-12-25 18:51:35 +01:00
plugins: ["@prettier/plugin-pug"],
pugAttributeSeparator: "none",
2023-12-25 21:56:34 +01:00
//pugBracketSameLine: true, // doesn't work, i made a github issue for this
2023-12-25 18:51:35 +01:00
pugEmptyAttributes: "none",
2023-12-23 03:46:48 +01:00
}