Allow per-project configuration via a .excodrc or excod.config.json file so users do not have to repeat flags on every invocation. CLI flags should take precedence over config file values.
Example config:
{
"output": "context.json",
"exclude": ["docs/**", "*.test.ts"],
"maxFileSize": 51200,
"includeDotfiles": true
}
Priority: Medium
Allow per-project configuration via a
.excodrcorexcod.config.jsonfile so users do not have to repeat flags on every invocation. CLI flags should take precedence over config file values.Example config:
{ "output": "context.json", "exclude": ["docs/**", "*.test.ts"], "maxFileSize": 51200, "includeDotfiles": true }Priority: Medium