From 2d1afc634ed9f70997b8b4f47c59ffd2644dae04 Mon Sep 17 00:00:00 2001 From: isExample Date: Thu, 26 Jun 2025 13:43:18 +0900 Subject: [PATCH] docs: ignore_language_framework property --- docs/docs/usage-guide/additional_configurations.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/docs/usage-guide/additional_configurations.md b/docs/docs/usage-guide/additional_configurations.md index 8d205865..98ed8472 100644 --- a/docs/docs/usage-guide/additional_configurations.md +++ b/docs/docs/usage-guide/additional_configurations.md @@ -250,3 +250,15 @@ Where the `ignore_pr_authors` is a list of usernames that you want to ignore. !!! note There is one specific case where bots will receive an automatic response - when they generated a PR with a _failed test_. In that case, the [`ci_feedback`](https://qodo-merge-docs.qodo.ai/tools/ci_feedback/) tool will be invoked. + +### Ignoring Generated Files by Language/Framework + +To automatically exclude files generated by specific languages or frameworks, you can add the following to your `configuration.toml` file: + +``` +[config] +ignore_language_framework = ['protobuf', ...] +``` + +You can view the list of auto-generated file patterns in `generated_code_ignore.toml`. +Files matching these glob patterns will be automatically excluded from PR Agent analysis. \ No newline at end of file