0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-06-22 07:08:40 +00:00

add clarification comment

This commit is contained in:
Víctor Losada Hernández
2026-06-15 23:18:00 +02:00
parent fd86561c7f
commit 2ab7c63853
@@ -25,6 +25,9 @@ export async function formatCSS(view) {
bracketSpacing: true,
endOfLine: 'lf'
});
//format manually single declaration rules to span one line.
//Prettier can't do it by default, this is crude but it works
formatted = formatted.replace(
/([^{]+)\{\s*\n\s*([^;\n]+:[^;\n]+;)\s*\n\s*\}/g,
(_, selector, decl)=>`${selector.trim()} { ${decl.trim()} }`