Print the header based on mode.
(js_only: bool, cpp_only: bool)
| 112 | |
| 113 | |
| 114 | def 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 | |
| 127 | def print_footer(js_only: bool, cpp_only: bool) -> None: |