Problem
const isCI = !isLocal && !isGenBaseline; is declared but never referenced. It only escapes the lint gate because eslint.config.mjs ignores scripts/ (see related issue).
Location
scripts/quality-gate.mjs:35 and the same line in the generator template src/generators/gate-script.mjs
Suggested fix
Remove it (or use it). Regenerate scripts/quality-gate.mjs from the generator after the change.
Acceptance
- No unused variable in the emitted gate script.
Problem
const isCI = !isLocal && !isGenBaseline;is declared but never referenced. It only escapes the lint gate becauseeslint.config.mjsignoresscripts/(see related issue).Location
scripts/quality-gate.mjs:35and the same line in the generator templatesrc/generators/gate-script.mjsSuggested fix
Remove it (or use it). Regenerate
scripts/quality-gate.mjsfrom the generator after the change.Acceptance