Files
pokedex/agent.md
2026-02-07 12:06:35 -06:00

545 B

Agent Guidelines for Vue

These rules must be followed when working on this project:

  • No Code Comments: Never add comments to the <script> logic. Only add comments within the <template>.
  • Component Reuse: Always create unique components and reuse them; never duplicate code.
  • Utils: Always separate reusable functions into a utils folder.
  • Constants: All constant values that can be removed from a component should be extracted. Maintain a single source of truth for constants. Do not use magic numbers in the code.