Ensure configuration documentation is comprehensive, clear and actionable for developers. This includes: 1. **Document all possible configuration options and behaviors**, not just defaults:
Ensure configuration documentation is comprehensive, clear and actionable for developers. This includes:
# Good example: Explicitly documenting all behaviors
- alwaysApply: true # Always include the rule, regardless of file context
- alwaysApply: false # Only include if globs exist AND match file context
- alwaysApply: undefined # Default: include if no globs exist OR globs exist and match
Configuration is stored in ~/.continue directory (or %USERPROFILE%\.continue on Windows)
<Tab title="YAML">
// YAML configuration example
</Tab>
<Tab title="JSON">
// JSON configuration example
</Tab>
Proper configuration documentation reduces developer confusion, prevents misconfigurations, and simplifies troubleshooting.
Enter the URL of a public GitHub repository