oxicop 0.2.0

A blazing-fast Ruby linter and formatter, reimplemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Oxicop - A blazing-fast Ruby linter implemented in Rust.
//!
//! This library provides the core linting infrastructure, cop implementations,
//! and output formatting for the oxicop command-line tool.

pub mod cop;
pub mod cops;
pub mod config;
pub mod formatter;
pub mod offense;
pub mod registry;
pub mod runner;
pub mod source;