2026-01-27 23:48:33 -08:00
|
|
|
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
|
|
|
|
|
# CodeRabbit Configuration - Batch 1: Implementation files only
|
|
|
|
|
|
|
|
|
|
language: en-US
|
|
|
|
|
|
|
|
|
|
reviews:
|
|
|
|
|
request_changes_workflow: false
|
|
|
|
|
high_level_summary: true
|
|
|
|
|
high_level_summary_placeholder: "@coderabbitai summary"
|
|
|
|
|
auto_title_placeholder: "@coderabbitai"
|
|
|
|
|
review_status: true
|
|
|
|
|
collapse_walkthrough: false
|
|
|
|
|
path_instructions: []
|
|
|
|
|
tools:
|
|
|
|
|
ast-grep:
|
|
|
|
|
essential_rules: true
|
|
|
|
|
rule_dirs:
|
|
|
|
|
- .coderabbit/ast-grep-rules
|
|
|
|
|
|
|
|
|
|
path_filters:
|
|
|
|
|
# ============================================
|
2026-01-31 11:21:09 -08:00
|
|
|
# Only analyze .cs implementation files in lib/
|
|
|
|
|
# Excludes: Tests, Quantower adapters, all non-.cs files
|
2026-01-27 23:48:33 -08:00
|
|
|
# ============================================
|
|
|
|
|
|
2026-01-31 11:21:09 -08:00
|
|
|
# INCLUDE: Only .cs files in lib directory
|
2026-01-27 23:48:33 -08:00
|
|
|
- "lib/**/*.cs"
|
|
|
|
|
|
2026-01-31 11:21:09 -08:00
|
|
|
# EXCLUDE: Test files
|
2026-01-27 23:48:33 -08:00
|
|
|
- "!**/*.Tests.cs"
|
|
|
|
|
- "!**/*.Validation.Tests.cs"
|
|
|
|
|
|
2026-01-31 11:21:09 -08:00
|
|
|
# EXCLUDE: Quantower adapter files
|
2026-01-30 12:47:25 -08:00
|
|
|
- "!**/*.Quantower.cs"
|
|
|
|
|
|
|
|
|
|
|
2026-01-31 11:21:09 -08:00
|
|
|
# EXCLUDE: All non-.cs files
|
2026-01-27 23:48:33 -08:00
|
|
|
- "!**/*.md"
|
|
|
|
|
- "!**/*.pine"
|
2026-01-31 11:21:09 -08:00
|
|
|
- "!**/*.json"
|
|
|
|
|
- "!**/*.yaml"
|
|
|
|
|
- "!**/*.yml"
|
|
|
|
|
- "!**/*.xml"
|
|
|
|
|
- "!**/*.props"
|
|
|
|
|
- "!**/*.targets"
|
|
|
|
|
- "!**/*.csproj"
|
|
|
|
|
- "!**/*.sln"
|
|
|
|
|
- "!**/*.runsettings"
|
|
|
|
|
- "!**/*.editorconfig"
|
|
|
|
|
- "!**/*.gitignore"
|
|
|
|
|
- "!**/*.gitattributes"
|
|
|
|
|
- "!**/*.sarif"
|
|
|
|
|
- "!**/*.html"
|
|
|
|
|
- "!**/*.css"
|
|
|
|
|
- "!**/*.png"
|
|
|
|
|
- "!**/*.gif"
|
|
|
|
|
- "!**/*.dll"
|
|
|
|
|
- "!**/*.exe"
|
|
|
|
|
- "!**/*.ps1"
|
2026-01-27 23:48:33 -08:00
|
|
|
|
2026-01-31 11:21:09 -08:00
|
|
|
# EXCLUDE: All directories outside lib/
|
2026-01-27 23:48:33 -08:00
|
|
|
- "!quantower/**"
|
|
|
|
|
- "!perf/**"
|
|
|
|
|
- "!ndepend/**"
|
|
|
|
|
- "!docfx/**"
|
2026-01-31 11:21:09 -08:00
|
|
|
- "!docs/**"
|
2026-01-27 23:48:33 -08:00
|
|
|
- "!temp/**"
|
|
|
|
|
- "!TestResults/**"
|
|
|
|
|
- "!TestResultsCoverage/**"
|
|
|
|
|
- "!.sarif/**"
|
2026-01-31 11:21:09 -08:00
|
|
|
- "!**/obj/**"
|
|
|
|
|
- "!**/bin/**"
|
2026-01-27 23:48:33 -08:00
|
|
|
|
|
|
|
|
chat:
|
|
|
|
|
auto_reply: true
|
|
|
|
|
|
|
|
|
|
# ==============================================
|
|
|
|
|
# BATCH 2 INSTRUCTIONS (for future PR):
|
|
|
|
|
# ==============================================
|
|
|
|
|
# To review test files, create a separate PR or
|
|
|
|
|
# modify path_filters to:
|
|
|
|
|
# - "lib/**/*.Tests.cs"
|
|
|
|
|
# - "lib/**/*.Validation.Tests.cs"
|
|
|
|
|
# - "quantower/**/*.cs"
|
|
|
|
|
# And exclude implementation files:
|
|
|
|
|
# - "!lib/**/[!T]*.cs" (files not starting with T)
|
|
|
|
|
#
|
|
|
|
|
# Test file breakdown by category:
|
|
|
|
|
# - channels: ~40 test files
|
|
|
|
|
# - trends_IIR: ~35 test files
|
|
|
|
|
# - trends_FIR: ~30 test files
|
|
|
|
|
# - filters: ~30 test files
|
|
|
|
|
# - Other categories: ~290 test files
|
|
|
|
|
# ==============================================
|