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
// SC2184: Quote arguments to unset (simpler than SC2149)
#[allow(unused_imports)]
use crate::linter::{Diagnostic, LintResult, Severity, Span};

pub fn check(_source: &str) -> LintResult {
    LintResult::new() // Covered by SC2149
}

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