gobby-wiki 0.2.0

Gobby wiki CLI shell
1
2
3
4
5
6
7
8
9
10
11
use crate::{CommandOutcome, ScopeSelection, WikiError, lint};

pub(crate) fn execute(selection: ScopeSelection) -> Result<CommandOutcome, WikiError> {
    super::run_analysis_command(
        "lint",
        selection,
        "serialize lint report",
        lint::run,
        lint::render_text,
    )
}