// "Use this skill to run npm run lint and fix linting issues. Triggers on fixing lint errors after code changes or validating code against project style guidelines."
| name | lint-fixer |
| description | Use this skill to run npm run lint and fix linting issues. Triggers on fixing lint errors after code changes or validating code against project style guidelines. |
Fix linting issues while preserving code functionality.
npm run lint runs 4 tools in sequence:
biome check --write) - Formatter + linter, auto-fixesoxlint --fix) - Fast JS/TS linter, auto-fixestsgo --noEmit) - TypeScript type checkingnpm run lint to identify issuesnpm run lint again to verifynpm run test to ensure no breakagebiome.json - Formatting rules (2 spaces, 120 chars, single quotes).oxlintrc.json - JS/TS lint rules.secretlintrc.json - Secret detection rules