mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 19:54:44 -07:00
734 B
Executable file
734 B
Executable file
Copilot Instructions for FriendlyKobold
Code Style Preferences
Comments
- Minimize comments in code - only add them when the code logic is genuinely confusing or complex
- Remove obvious/redundant comments that just describe what the code does
- Prefer self-documenting code with clear variable and function names
- Focus on "why" not "what" when comments are necessary
General Coding
- Follow existing TypeScript/React patterns in the codebase
- Maintain consistency with the established project structure
- Use proper TypeScript types (avoid
anywhen possible) - Follow the ESLint configuration (includes SonarJS and security rules)
- Never create tests, docs or github workflows
- don't log anything to console