marker_utils 0.5.0

Marker's standard library for creating lints
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]
#![warn(clippy::pedantic)]
#![warn(clippy::exhaustive_enums)]
#![allow(clippy::module_name_repetitions)]
#![allow(clippy::unused_self)] // `self` is needed to potentualy change the behavior later
#![allow(clippy::trivially_copy_pass_by_ref)] // Needed to potentualy change the behavior later

pub mod visitor;