-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodecov.yml
More file actions
53 lines (49 loc) · 1.23 KB
/
Copy pathcodecov.yml
File metadata and controls
53 lines (49 loc) · 1.23 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
codecov:
require_ci_to_pass: false
coverage:
status:
project:
default:
informational: true
patch:
default:
informational: true
ignore:
# Third-party UI library (shadcn/ui) — not our code
- "resources/js/components/ui/**"
# Auto-generated Wayfinder route helpers
- "resources/js/actions/**"
- "resources/js/routes/**"
- "resources/js/routes.ts"
# Application entry points (not unit-testable)
- "resources/js/app.tsx"
- "resources/js/ssr.tsx"
- "resources/js/swagger.tsx"
# Pure type definition files (no executable code)
- "resources/js/**/*.d.ts"
- "resources/js/types/affiliations.ts"
- "resources/js/types/docs.ts"
- "resources/js/types/portal.ts"
- "resources/js/types/resources.ts"
# Schema migrations are exercised by tests but not treated as line-coverage targets
- "database/migrations/**"
# Legacy migration backups
- "database/migrations_backup/**"
# Framework boilerplate
- "bootstrap/**"
flags:
backend:
paths:
- app/
- routes/
- config/
- database/
carryforward: true
frontend:
paths:
- resources/js/
carryforward: true
comment:
layout: "reach,diff,flags,files"
behavior: default
require_changes: true