-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Expand file tree
/
Copy path.codeowners-config.yml
More file actions
112 lines (101 loc) · 2.56 KB
/
.codeowners-config.yml
File metadata and controls
112 lines (101 loc) · 2.56 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# CODEOWNERS Coverage Configuration for Sentry
# Path to CODEOWNERS file
codeowners_path: '.github/CODEOWNERS'
# Path to baseline file
baseline_path: '.github/codeowners-coverage-baseline.txt'
team_allowlist:
- getsentry/alerts-create-issues
- getsentry/alerts-notifications
- getsentry/app-backend
- getsentry/app-frontend
- getsentry/codecov
- getsentry/codecov-merge
- getsentry/coding-workflows
- getsentry/coding-workflows-sentry-backend
- getsentry/coding-workflows-sentry-frontend
- getsentry/crons
- getsentry/dashboards
- getsentry/data
- getsentry/data-browsing
- getsentry/design
- getsentry/design-engineering
- getsentry/dev-infra
- getsentry/ecosystem
- getsentry/emerge-tools
- getsentry/enterprise
- getsentry/explore
- getsentry/feedback-backend
- getsentry/feedback-frontend
- getsentry/foundational-storage
- getsentry/gdx
- getsentry/hybrid-cloud
- getsentry/ingest
- getsentry/issue-detection-backend
- getsentry/issue-detection-frontend
- getsentry/issue-workflow
- getsentry/machine-learning-ai
- getsentry/ops
- getsentry/owners-api
- getsentry/owners-auth
- getsentry/owners-js-build
- getsentry/owners-js-deps
- getsentry/owners-legal
- getsentry/owners-migrations
- getsentry/owners-python-build
- getsentry/owners-sentry-dev
- getsentry/owners-snuba
- getsentry/product-owners-settings-integrations
- getsentry/profiling
- getsentry/python-typing
- getsentry/release-approvers
- getsentry/replay-backend
- getsentry/replay-frontend
- getsentry/revenue
- getsentry/scm
- getsentry/security
- getsentry/sre-infrastructure-engineering
- getsentry/streaming-platform
- getsentry/team-javascript-sdks
- getsentry/team-web-sdk-backend
- getsentry/telemetry-experience
- getsentry/value-discovery
# File patterns to exclude from coverage checking
exclusions:
# Python artifacts
- '**/__pycache__/**'
- '**/*.pyc'
- '**/*.pyo'
- '**/*.egg-info/**'
- '.venv/**'
- '.tox/**'
- '.pytest_cache/**'
- '.mypy_cache/**'
# JavaScript artifacts
- 'node_modules/**'
- 'dist/**'
- 'build/**'
- '**/coverage/**'
- '**/.next/**'
# Build/CI artifacts
- '.git/**'
- 'htmlcov/**'
- '.coverage'
- '**/.DS_Store'
- '.artifacts/**'
# Generated files
- '**/*.generated.*'
- '**/generated/**'
# Vendor/third-party
- 'vendor/**'
- 'fixtures/**'
# Documentation build artifacts
- 'docs/_build/**'
# Temporary files
- '**/*.tmp'
- '**/*.temp'
- '**/.cache/**'
# Agent files
- '.claude/**'
- '.cursor/**'
- '.craft.yml'
- '.mcp.json'