badness 0.1.0

An LSP, formatter, and linter for LaTeX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! badness — a formatter, linter, and language server for LaTeX, built on a
//! lossless rowan CST. See `AGENTS.md` for the architecture and `TODO.md` for
//! the roadmap.

pub mod ast;
pub mod formatter;
pub mod incremental;
pub mod linter;
pub mod lsp;
pub mod parser;
pub mod project;
pub mod semantic;
pub mod syntax;
pub mod text;