badness 0.15.0

A language server, formatter, and linter for LaTeX
1
2
3
4
5
6
7
8
9
10
11
12
//! Compatibility wrapper over the semantic layer in the `badness-parser`
//! crate, plus the CLI-side concerns that do not belong in the published
//! parser: signature loading from disk and the salsa-backed package-scope
//! resolution ([`load`]).

pub use badness_parser::semantic::*;

pub mod load;

pub use load::{
    DiskPackageSource, PackageSource, collect_package_signatures, disk_scope_signatures,
};