-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oss-sustain-guard.toml.example
More file actions
31 lines (23 loc) · 957 Bytes
/
.oss-sustain-guard.toml.example
File metadata and controls
31 lines (23 loc) · 957 Bytes
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
# OSS Sustain Guard Configuration
[tool.oss-sustain-guard]
# Packages to exclude from sustainability checks
exclude = [
"some-internal-package",
"legacy-dependency",
]
# Default output format style: "compact", "normal", or "detail"
# Can be overridden with -o/--output-style CLI option
# output_style = "normal"
# Enable verbose logging by default (cache operations, metric reconstruction)
# Can be overridden with -v/--verbose CLI option
# verbose = false
[tool.oss-sustain-guard.cache]
# Cache directory (default: ~/.cache/oss-sustain-guard)
# Supports environment variable expansion: ~, $HOME, etc.
# directory = "~/.cache/oss-sustain-guard"
# Cache TTL (Time To Live) in seconds (default: 604800 = 7 days)
# After this period, cached data is considered stale and will be refetched
# ttl_seconds = 604800
# Enable or disable caching (default: true)
# When disabled, data is always fetched fresh from GitHub/local sources
# enabled = true