Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
22 changes: 22 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
language: en-US
reviews:
profile: assertive
request_changes_workflow: true
high_level_summary: true
poem: false
review_status: true
collapse_walkthrough: false
path_instructions:
- path: "*.py"
instructions: |
Review for security issues — validate all user inputs.
Check for proper error handling and logging.
- path: ".github/workflows/**"
instructions: |
Check for command injection via untrusted GitHub context variables.
Verify secrets are not exposed in logs.
- path: "Dockerfile"
instructions: |
Check for security best practices — non-root user, minimal base image.
chat:
auto_reply: true
12 changes: 12 additions & 0 deletions .gitleaks.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Gitleaks configuration
# https://github.com/gitleaks/gitleaks

title = "RedditModLog gitleaks config"

[allowlist]
description = "Global allowlist"
paths = [
'''\.env\.example''',
'''__pycache__/''',
'''\.pytest_cache/''',
]
Loading