Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 21 additions & 20 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ reviews:
enabled: true
drafts: true

# Sparse-checkout / review scope: include .github explicitly; exclude generated and vendor paths
path_filters:
- ".github/**"
- "!dist/**"
- "!lib/**"
- "!upload/**"
- "!node_modules/**"
- "!package-lock.json"
- "!.pubnub.yml"
- "!.vscode/**"

# Path-based review instructions
path_instructions:
- path: "src/core/**"
Expand Down Expand Up @@ -69,37 +80,27 @@ reviews:
- Proper use of mocks/stubs (Sinon + Nock)
- No flaky patterns (hardcoded timeouts, race conditions)
- Tests that actually assert meaningful behavior
- path: ".github/**"
instructions: |
GitHub Actions workflows and repo automation. Review for:
- Valid workflow YAML (triggers, concurrency, job dependencies)
- Safe use of secrets and minimal required permissions
- Reasonable timeouts and matrix coverage; actionlint/YAMLlint findings should be addressed

# Tools configuration
tools:
# Enable GitHub checks integration
github-checks:
enabled: true
timeout_ms: 120000
yamllint:
enabled: true
actionlint:
enabled: true

chat:
auto_reply: true

knowledge_base:
mcp:
usage: enabled

# Path filters - ignore generated/vendored/build output
path_filters:
# Build outputs
- "!dist/**"
- "!lib/**"
- "!upload/**"

# Dependencies
- "!node_modules/**"

# Lock files - too noisy, low review value
- "!package-lock.json"

# Config/metadata that rarely needs review
- "!.pubnub.yml"
- "!.vscode/**"

# Generated type bundles
- "!lib/types/**"
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
"proxy-agent": "^6.3.0",
"react-native-url-polyfill": "^2.0.0"
},
"overrides": {
"basic-ftp": "5.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
Expand Down
Loading