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

Function print_header

ci/lint.py:114–124  ·  view source on GitHub ↗

Print the header based on mode.

(js_only: bool, cpp_only: bool)

Source from the content-addressed store, hash-verified

112
113
114def print_header(js_only: bool, cpp_only: bool) -> None:
115 """Print the header based on mode."""
116 if js_only:
117 print("🌐 Running JavaScript Linting Only")
118 print("===================================")
119 elif cpp_only:
120 print("🔧 Running C++ Linting Only")
121 print("============================")
122 else:
123 print("🚀 Running FastLED Comprehensive Linting Suite")
124 print("==============================================")
125
126
127def print_footer(js_only: bool, cpp_only: bool) -> None:

Callers 1

mainFunction · 0.85

Calls 1

printFunction · 0.50

Tested by

no test coverage detected