From 0db10a74fd9660d7f29963a3850facc5dbfba01a Mon Sep 17 00:00:00 2001 From: Miha Kralj Date: Tue, 9 Dec 2025 14:24:33 -0500 Subject: [PATCH] chore: add coderabbit configuration to exclude generated files --- .coderabbit.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .coderabbit.yaml diff --git a/.coderabbit.yaml b/.coderabbit.yaml new file mode 100644 index 00000000..280b6820 --- /dev/null +++ b/.coderabbit.yaml @@ -0,0 +1,20 @@ +# CodeRabbit Configuration File +# Documentation: https://docs.coderabbit.ai/getting-started/yaml-configuration + +reviews: + path_filters: + - "!**/*.md" # Exclude Markdown documentation + - "!**/*.dib" # Exclude .NET Interactive Notebooks + - "!**/*.csv" # Exclude CSV data files + - "!**/*.xml" # Exclude XML files + - "!**/*.json" # Exclude JSON files + - "!**/bin/**" # Exclude bin directories + - "!**/obj/**" # Exclude obj directories + - "!**/BenchmarkDotNet.Artifacts/**" # Exclude benchmark artifacts + - "!**/ilspy/**" # Exclude decompiled code + - "!**/*.lock" # Exclude lock files + - "!**/*.nupkg" # Exclude NuGet packages + - "!**/*.snupkg" # Exclude NuGet symbol packages + # - "!**/*.Tests.cs" # Uncomment to exclude all test files + # - "!**/*.Validation.Tests.cs" # Uncomment to exclude validation tests + # - "!**/*.Quantower.Tests.cs" # Uncomment to exclude Quantower adapter tests