| 24 | mod taint_analysis; |
| 25 | |
| 26 | pub struct AnalysisContext<'a> { |
| 27 | pub root_path: String, |
| 28 | pub exclusions: Vec<String>, |
| 29 | pub ruleset: RuleSet, |
| 30 | pub py_files: &'a [PythonFile], |
| 31 | } |
| 32 | |
| 33 | pub fn run_analysis(mut context: AnalysisContext) -> Vec<Issue> { |
| 34 | // Apply disabled_rule_ids from [defaults] before scanning |
nothing calls this directly
no outgoing calls
no test coverage detected