-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 827 Bytes
/
Copy pathpyproject.toml
File metadata and controls
27 lines (23 loc) · 827 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
[project]
name = "devguard-ai"
version = "0.1.0"
description = "Agentic AI-powered DevSecOps platform"
requires-python = ">=3.12"
[tool.ruff]
line-length = 100
target-version = "py312"
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "W", "B", "UP"]
ignore = []
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
warn_unused_ignores = true
warn_return_any = false
disallow_untyped_defs = false # Sprint 1: loosened, tighten later (Sprint 5)
# Pytest config lives in pytest.ini (repo root), not here: pytest reads
# only ONE config source (pytest.ini > pyproject.toml > setup.cfg, first
# found wins, never merged), so this [tool.pytest.ini_options] section was
# silently dead the moment pytest.ini was added -- removed rather than
# left as a second, ignored, out-of-sync copy of the same settings.