Skip to main content

oak_scss/formatter/
mod.rs

1#![doc = include_str!("../readme.md")]
2
3/// SCSS Code Formatter
4pub struct ScssFormatter;
5
6impl ScssFormatter {
7    pub fn new() -> Self {
8        Self
9    }
10
11    pub fn format(&self, source: &str) -> String {
12        source.to_string()
13    }
14}