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