44 lines
571 B
TOML
44 lines
571 B
TOML
[version]
|
|
name = "vibeguard"
|
|
version = "0.1.0"
|
|
|
|
[analyze]
|
|
severity_threshold = "warning"
|
|
incremental = true
|
|
workers = 0
|
|
|
|
[patterns]
|
|
enabled = ["all"]
|
|
disabled = []
|
|
|
|
[ignore]
|
|
paths = [
|
|
"*.egg-info/",
|
|
"*.pyc",
|
|
"__pycache__/",
|
|
".git/",
|
|
"node_modules/",
|
|
"vendor/",
|
|
".tox/",
|
|
".venv/",
|
|
"venv/",
|
|
"build/",
|
|
"dist/",
|
|
]
|
|
|
|
[output]
|
|
theme = "default"
|
|
show_fixes = true
|
|
show_snippets = true
|
|
max_snippet_lines = 10
|
|
|
|
[formats]
|
|
json = true
|
|
html = true
|
|
sarif = true
|
|
|
|
[github]
|
|
comment_on_pr = false
|
|
create_check_runs = true
|
|
sarif_upload_url = ""
|