diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-21 15:10:38 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-21 15:12:52 +0800 |
| commit | 9976b31a56bcc3ed37ac878b351bd8d097dc67cc (patch) | |
| tree | e7b092aee5e82f5d4c1f50332a17f1d2176ae51b /mingling_cli/build.rs | |
| parent | ee01756279ef17487d19659adedc0639547bbd25 (diff) | |
feat(mling): add linter framework with async support and registry
generation
Diffstat (limited to 'mingling_cli/build.rs')
| -rw-r--r-- | mingling_cli/build.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mingling_cli/build.rs b/mingling_cli/build.rs index 2a36e37..b74d8a0 100644 --- a/mingling_cli/build.rs +++ b/mingling_cli/build.rs @@ -1,5 +1,12 @@ use mingling::build::analyze_and_build_type_mapping; +pub mod pre; + fn main() { + // Perform path analysis and build type mapping table analyze_and_build_type_mapping().unwrap(); + + // Generate lint registry + pre::gen_mod_file().unwrap(); + pre::gen_lint_registry().unwrap(); } |
