/
githubmirror
/
sway
Обзор
Документация
Войти
/
githubmirror
/
sway
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
swayfmt/src/lib.rs
18 строк
559 B
Sophie Dankel
ci: fixing typos programmatically (#5975)
09 май 2024, 03:21
Не верифицирован
09 май 2024, 03:21
f8e8d35
Код
Авторство
О чём код?
//! Based on `rustfmt`, `swayfmt` aims to be a transparent approach to formatting Sway code. //! //! `swayfmt` configurations can be adjusted with a `swayfmt.toml` config file declared at the root of a Sway project, //! however the default formatter does not require the presence of one and any fields omitted will remain as default. #![allow(dead_code)] pub mod comments; pub mod config; mod constants; mod error; mod formatter; mod items; mod module; pub mod parse; mod utils; pub use crate::formatter::{Format, Formatter}; pub use error::FormatterError;