arity 0.5.0

An LSP, formatter, and linter for R
1
2
3
4
5
6
7
8
9
10
11
12
//! Suspicious-pattern rules — code that's almost always a mistake but not
//! a syntax error.

mod assignment_in_condition;
mod redundant_equals;
mod redundant_ifelse;
mod shadowed_builtin;

pub use assignment_in_condition::AssignmentInCondition;
pub use redundant_equals::RedundantEquals;
pub use redundant_ifelse::RedundantIfelse;
pub use shadowed_builtin::ShadowedBuiltin;