typope 0.4.1

Pedantic source code checker for orthotypography mistakes and other typographical errors
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]
use clap::Parser;

mod cli;

fn main() -> anyhow::Result<()> {
    let args = crate::cli::Args::parse();

    args.run()
}