bashrs 6.66.0

Rust-to-Shell transpiler for deterministic bootstrap scripts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SC2187: Ash scripts checked as Bash
#[allow(unused_imports)]
use crate::linter::{Diagnostic, LintResult, Severity, Span};

pub fn check(_source: &str) -> LintResult {
    LintResult::new() // Metadata-based, requires shebang analysis
}

#[cfg(test)]
mod tests {
    use super::*;
    #[test]
    fn test_sc2187_placeholder() {
        assert_eq!(check("").diagnostics.len(), 0);
    }
}