frontend-code-quality
Installation
SKILL.md
Frontend Code Quality
This skill defines the quality standards specific to frontend applications.
Linting & Formatting
We use ESLint 9 with a shared configuration (@eridu/eslint-config).
- Command:
pnpm lint(runseslint . --fix) - Rules:
- No
anytypes. - React Hooks rules enforced (
react-hooks/rules-of-hooks,react-hooks/exhaustive-deps). - Standard imports sorting.
- No
Testing
We use Vitest for unit and component testing.