-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy path.coderabbit.yaml
More file actions
64 lines (62 loc) · 1.53 KB
/
.coderabbit.yaml
File metadata and controls
64 lines (62 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
language: en-US
reviews:
profile: assertive
auto_review:
enabled: true
base_branches:
- develop
- release/.*
drafts: false
ignore_title_keywords:
- '[bot]'
- 'renovate'
- 'dependabot'
- 'release'
- 'chore(release)'
path_filters:
- '!dist/**'
- '!build/**'
- '!node_modules/**'
- '!pnpm-lock.yaml'
- '!vcpkg/**'
path_instructions:
- path: '**/*.{ts,tsx,js,jsx,mjs,cjs}'
instructions: |
TypeScript/JavaScript: strict mode, ES2022 target, ESNext modules.
Unused variables must be prefixed with underscore (_).
Follow eslint flat config in eslint.config.mjs and prettier formatting.
- path: 'nodes/**/*.py'
instructions: |
Python pipeline nodes: use single quotes, ruff for linting/formatting,
PEP 257 docstrings, target Python 3.10+.
- path: 'packages/server/**/*.{cpp,h,hpp}'
instructions: |
C++ code: C++17 standard. This is the core engine — review for
memory safety, thread safety, and performance.
tools:
eslint:
enabled: true
ruff:
enabled: true
cppcheck:
enabled: true
markdownlint:
enabled: true
shellcheck:
enabled: true
gitleaks:
enabled: true
yamllint:
enabled: true
knowledge_base:
learnings:
scope: auto
issues:
scope: auto
jira:
project_keys: []
linear:
team_keys: []
pull_requests:
scope: auto