File size: 669 Bytes
4b445f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Sentinel AI — Per-repo configuration
# Place this file as sentinel.yml in your repository root

# Enable/disable specific agents
agents:
  security: true
  performance: true
  style: true

# Severity threshold — only post findings at or above this level
# Options: critical, high, medium, low
min_severity: low

# Confidence threshold — findings below this are shown as 'Suggestions'
min_confidence: 0.6

# Files/directories to exclude from analysis
exclude:
  - "vendor/"
  - "node_modules/"
  - "*.min.js"
  - "*.generated.*"

# Language-specific overrides (optional)
# languages:
#   python:
#     style_guide: pep8
#   javascript:
#     style_guide: airbnb