1
2
3
4
5
6
7
8
9
10
11
12
use crate::core::config::FluffConfig;

pub trait Formatter {
    fn dispatch_template_header(
        &self,
        f_name: String,
        linter_config: FluffConfig,
        file_config: FluffConfig,
    );

    fn dispatch_parse_header(&self, f_name: String);
}