arity 0.3.0

An LSP, formatter, and linter for R
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod check;
pub(crate) mod context;
pub mod core;
pub(crate) mod ir;
pub(crate) mod printer;
pub(crate) mod render;
pub(crate) mod rules;
pub mod style;
pub(crate) mod trivia;

pub use check::{CheckError, CheckResult, check_paths, check_paths_with_style};
pub use core::{FormatError, RangeFormatted, format, format_node, format_range, format_with_style};
pub use style::FormatStyle;