()
| 66 | |
| 67 | |
| 68 | def main() -> None: |
| 69 | from ci.util.check_files import run_checker_standalone |
| 70 | |
| 71 | checker = AsmJsLocationChecker() |
| 72 | run_checker_standalone( |
| 73 | checker, |
| 74 | [str(PROJECT_ROOT / "src")], |
| 75 | "Found Emscripten JS glue macros outside *.js.cpp.hpp files", |
| 76 | extensions=[".h", ".hpp", ".cpp", ".cpp.hpp"], |
| 77 | ) |
| 78 | |
| 79 | |
| 80 | if __name__ == "__main__": |
no test coverage detected