biome_css_formatter 0.5.7

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

#[derive(Debug, Clone, Default)]
pub(crate) struct FormatCssDeclaration;
impl FormatNodeRule<CssDeclaration> for FormatCssDeclaration {
    fn fmt_fields(&self, node: &CssDeclaration, f: &mut CssFormatter) -> FormatResult<()> {
        let CssDeclarationFields {
            property,
            important,
        } = node.as_fields();

        write!(f, [property.format()])?;

        if important.is_some() {
            write!(f, [space(), important.format()])?;
        }

        Ok(())
    }
}