MCPcopy Create free account
hub / github.com/FastLED/FastLED / main

Function main

ci/lint_cpp/include_after_namespace_checker.py:94–105  ·  view source on GitHub ↗

Run include after namespace checker standalone.

()

Source from the content-addressed store, hash-verified

92
93
94def main() -> None:
95 """Run include after namespace checker standalone."""
96 from ci.util.check_files import run_checker_standalone
97 from ci.util.paths import PROJECT_ROOT
98
99 checker = IncludeAfterNamespaceChecker()
100 run_checker_standalone(
101 checker,
102 [str(PROJECT_ROOT / "src")],
103 "Found #include after namespace declarations",
104 extensions=[".cpp", ".h", ".hpp", ".cc", ".ino"],
105 )
106
107
108if __name__ == "__main__":

Calls 2

run_checker_standaloneFunction · 0.90

Tested by

no test coverage detected