Fix: Restore swiftlint:disable for false-positive empty_count

- count is an Int variable (pixel counter), not a collection .count
- CI treats empty_count as error level, causing build failure
This commit is contained in:
phranck
2026-02-15 02:39:05 +01:00
parent 8500dc52f5
commit 790d46c059
@@ -66,7 +66,7 @@ extension ASCIIConverter {
// Average color for this cell
let avgPixel: RGBA
if count > 0 {
if count > 0 { // swiftlint:disable:this empty_count
avgPixel = RGBA(
r: UInt8(clamping: totalR / count),
g: UInt8(clamping: totalG / count),