Once the sponsor-family Stylelint fix (#817) landed and lint:styles passed, the lint chain (lint:scripts && lint:styles && prettier -c .) proceeded to prettier -c ., which flags the coverage-loop state doc:
Checking formatting...
[warn] COVERAGE-LOOP.md
[warn] Code style issues found in the above file. Run Prettier with --write to fix.
(In run 17759 the job died earlier at lint:styles, so prettier -c . never ran — this only surfaces once #817's fix is in.)
Cause
COVERAGE-LOOP.md is a machine-maintained coverage-loop progress log, rewritten every iteration by the loop tooling (which doesn't run Prettier on it). It's committed to the repo, so prettier -c . checks it and will keep going red on every loop refresh. It's a working/state doc, not a formatted deliverable.
The existing .prettierignore already exempts the analogous machine/vendored content (/projects/spikersoft/src/assets/, /pnpm-lock.yaml, generated graphs, etc.).
Fix
Add /COVERAGE-LOOP.md to .prettierignore (append — do NOT replace the file; it carries the asset exclusions that keep CI green).
## Symptom
Once the sponsor-family Stylelint fix (#817) landed and `lint:styles` passed, the `lint` chain (`lint:scripts && lint:styles && prettier -c .`) proceeded to `prettier -c .`, which flags the coverage-loop state doc:
```
Checking formatting...
[warn] COVERAGE-LOOP.md
[warn] Code style issues found in the above file. Run Prettier with --write to fix.
```
(In run 17759 the job died earlier at `lint:styles`, so `prettier -c .` never ran — this only surfaces once #817's fix is in.)
## Cause
`COVERAGE-LOOP.md` is a machine-maintained coverage-loop progress log, rewritten every iteration by the loop tooling (which doesn't run Prettier on it). It's committed to the repo, so `prettier -c .` checks it and will keep going red on every loop refresh. It's a working/state doc, not a formatted deliverable.
The existing `.prettierignore` already exempts the analogous machine/vendored content (`/projects/spikersoft/src/assets/`, `/pnpm-lock.yaml`, generated graphs, etc.).
## Fix
Add `/COVERAGE-LOOP.md` to `.prettierignore` (append — do NOT replace the file; it carries the asset exclusions that keep CI green).
Fixed and verified. spikersoft-angular PR #555 (`0652909e`, merged to master) added `/COVERAGE-LOOP.md` to `.prettierignore` (line 64).
Verified on master today: `npx prettier -c COVERAGE-LOOP.md` reports "All matched files use Prettier code style!", and `test-and-lint` is green on the latest master run (18120). Closing.
— Opus 5 Agent
Fixed and verified. spikersoft-angular PR #555 (\`0652909e\`, merged to master) added \`/COVERAGE-LOOP.md\` to \`.prettierignore\` (line 64).
Verified on master today: \`npx prettier -c COVERAGE-LOOP.md\` reports "All matched files use Prettier code style!", and \`test-and-lint\` is green on the latest master run (18120). Closing.
— Opus 5 Agent
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Symptom
Once the sponsor-family Stylelint fix (#817) landed and
lint:stylespassed, thelintchain (lint:scripts && lint:styles && prettier -c .) proceeded toprettier -c ., which flags the coverage-loop state doc:(In run 17759 the job died earlier at
lint:styles, soprettier -c .never ran — this only surfaces once #817's fix is in.)Cause
COVERAGE-LOOP.mdis a machine-maintained coverage-loop progress log, rewritten every iteration by the loop tooling (which doesn't run Prettier on it). It's committed to the repo, soprettier -c .checks it and will keep going red on every loop refresh. It's a working/state doc, not a formatted deliverable.The existing
.prettierignorealready exempts the analogous machine/vendored content (/projects/spikersoft/src/assets/,/pnpm-lock.yaml, generated graphs, etc.).Fix
Add
/COVERAGE-LOOP.mdto.prettierignore(append — do NOT replace the file; it carries the asset exclusions that keep CI green).Fixed and verified. spikersoft-angular PR #555 (`0652909e`, merged to master) added `/COVERAGE-LOOP.md` to `.prettierignore` (line 64).
Verified on master today: `npx prettier -c COVERAGE-LOOP.md` reports "All matched files use Prettier code style!", and `test-and-lint` is green on the latest master run (18120). Closing.
— Opus 5 Agent