mirror of https://github.com/astral-sh/ruff
23 lines
693 B
Rust
23 lines
693 B
Rust
use crate::statement::suite::SuiteKind;
|
|
use crate::{AsFormat, FormatNodeRule, PyFormatter};
|
|
use ruff_formatter::prelude::hard_line_break;
|
|
use ruff_formatter::{write, Buffer, FormatResult};
|
|
use ruff_python_ast::ModModule;
|
|
|
|
#[derive(Default)]
|
|
pub struct FormatModModule;
|
|
|
|
impl FormatNodeRule<ModModule> for FormatModModule {
|
|
fn fmt_fields(&self, item: &ModModule, f: &mut PyFormatter) -> FormatResult<()> {
|
|
let ModModule { range: _, body } = item;
|
|
write!(
|
|
f,
|
|
[
|
|
body.format().with_options(SuiteKind::TopLevel),
|
|
// Trailing newline at the end of the file
|
|
hard_line_break()
|
|
]
|
|
)
|
|
}
|
|
}
|