jbuild 0.1.8

High-performance Java build tool supporting Maven and Gradle
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Checkstyle - Java code style checker
//!
//! This module provides Java code style checking capabilities integrated into jbuild.
//! It is a Rust implementation of Checkstyle, using tree-sitter for Java parsing.

pub mod api;
pub mod checks;
pub mod parser;
pub mod runner;
pub mod utils;

pub use api::*;
pub use checks::*;
pub use parser::*;
pub use runner::*;
pub use utils::*;