Skip to main content

simple_linter/
simple_linter.rs

1//! Example: Simple linter binary
2//!
3//! This example shows how to create the simplest possible linter binary
4//! using the torrust-linting package.
5
6use anyhow::Result;
7
8fn main() -> Result<()> {
9    // This single line gives you a complete linter CLI!
10    torrust_linting::run_cli()
11}