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
use anyhow::Result;

use crate::{app, git};

/// Check that shell scripts do not have common mistakes
#[derive(clap::Args, Debug)]
#[command()]
pub struct Cli {}

impl Cli {
    pub fn exec(self) -> Result<()> {
        app::set_repo_dir()?;

        #[allow(clippy::case_sensitive_file_extension_comparisons)]
        app::exec(
            "shellcheck",
            ["--external-sources", "--shell", "bash"].into_iter().chain(
                git::list_files()?
                    .iter()
                    .filter_map(|name| name.ends_with(".sh").then_some(name.as_str())),
            ),
            true,
        )
    }
}