1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Non-fatal advisory passes — lints.
//!
//! `rledger lint <NAME> <ARGS...>` runs a named lint over the given inputs and
//! reports issues without failing the build. The first lint is `transfers`,
//! which finds likely inter-account transfer pairs and (optionally) links
//! them with `^link:` tags.
use Result;
use ;
use ExitCode;
/// Run non-fatal advisory passes over one or more beancount files.
/// Available lints.
/// Dispatch to the requested lint.
///
/// # Errors
/// Propagates errors from the underlying lint implementation.