biome_css_formatter 0.5.7

Biome's CSS formatter
Documentation
use crate::prelude::*;
use biome_css_syntax::{CssQualifiedRule, CssQualifiedRuleFields};
use biome_formatter::write;

#[derive(Debug, Clone, Default)]
pub(crate) struct FormatCssQualifiedRule;
impl FormatNodeRule<CssQualifiedRule> for FormatCssQualifiedRule {
    fn fmt_fields(&self, node: &CssQualifiedRule, f: &mut CssFormatter) -> FormatResult<()> {
        let CssQualifiedRuleFields { prelude, block } = node.as_fields();

        write!(
            f,
            [
                // The selector list gets expanded so that every selector
                // appears on its own line, no matter how long they are.
                group(&prelude.format()).should_expand(true),
                space(),
                &block?.format()
            ]
        )
    }
}