arity 0.6.0

An LSP, formatter, and linter for R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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 repeat_loop;
mod shadowed_builtin;

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