npm run lint currently fails on develop with 3 errors, all pre-existing unused imports (CI only runs docker build, so these never surfaced):
src/monitoringV2/constants.ts:8 — MintingHubV2ABI imported but never used
src/monitoringV2/minter.service.ts:7 — DecentralizedEUROABI and ADDRESS imported but never used
@typescript-eslint/no-unused-vars (allowed unused must match /^_/). Fix: drop the unused imports. Optionally wire lint into CI so this can't regress.
npm run lintcurrently fails ondevelopwith 3 errors, all pre-existing unused imports (CI only runsdocker build, so these never surfaced):src/monitoringV2/constants.ts:8—MintingHubV2ABIimported but never usedsrc/monitoringV2/minter.service.ts:7—DecentralizedEUROABIandADDRESSimported but never used@typescript-eslint/no-unused-vars(allowed unused must match/^_/). Fix: drop the unused imports. Optionally wire lint into CI so this can't regress.