mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
15 lines
610 B
Plaintext
15 lines
610 B
Plaintext
# Code Quality Rules
|
|
|
|
1. Test Coverage:
|
|
- Before attempting completion, always make sure that any code changes have test coverage
|
|
- Ensure all tests pass before submitting changes
|
|
|
|
2. Lint Rules:
|
|
- Never disable any lint rules without explicit user approval
|
|
- If a lint rule needs to be disabled, ask the user first and explain why
|
|
- Prefer fixing the underlying issue over disabling the lint rule
|
|
- Document any approved lint rule disabling with a comment explaining the reason
|
|
|
|
# Adding a New Setting
|
|
|
|
To add a new setting that persists its state, follow the steps in cline_docs/settings.md |