torrust-linting 0.1.0

Linting utilities for Torrust projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Example: Simple linter binary
//!
//! This example shows how to create the simplest possible linter binary
//! using the torrust-linting package.

use anyhow::Result;

fn main() -> Result<()> {
    // This single line gives you a complete linter CLI!
    torrust_linting::run_cli()
}