syntastic/lib.rs
1//! [](https://crates.io/crates/syntastic)
2//! [](https://docs.rs/syntastic)
3//! [](https://github.com/mx00s/syntastic/actions)
4//! [](https://coveralls.io/github/mx00s/syntastic?branch=main)
5//!
6//! <!-- `README.md` generated from `src/lib.rs` -->
7//!
8//! # Thanks
9//!
10//! * [Robert Harper](https://www.cs.cmu.edu/~rwh/) for formalizing abstract syntax in
11//! [_Practical Foundations for Programming Languages_](https://www.cs.cmu.edu/~rwh/pfpl/).
12//! * [Rust GitHub Template](https://rust-github.github.io/) for helping me set up
13//! reasonable defaults for this repository.
14
15#![deny(missing_docs)]
16#![deny(clippy::all)]
17
18pub mod ast;