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

Function main

ci/lint_cpp/singleton_in_headers_checker.py:121–132  ·  view source on GitHub ↗

Run singleton checker standalone.

()

Source from the content-addressed store, hash-verified

119
120
121def main() -> None:
122 """Run singleton checker standalone."""
123 from ci.util.check_files import run_checker_standalone
124 from ci.util.paths import PROJECT_ROOT
125
126 checker = SingletonInHeadersChecker()
127 run_checker_standalone(
128 checker,
129 [str(PROJECT_ROOT / "src")],
130 "Singleton usage violation (see rules in singleton_in_headers_checker.py)",
131 extensions=[".h", ".hpp"],
132 )
133
134
135if __name__ == "__main__":

Callers 1

Calls 2

run_checker_standaloneFunction · 0.90

Tested by

no test coverage detected