-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (29 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
39 lines (29 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
28
29
30
31
32
33
34
35
36
37
38
39
[project]
requires-python = ">=3.14"
[tool.pylint.main]
py-version = "3.14"
# Use all available CPU cores
jobs = 0
# Recurse into subdirectories
recursive = true
# Score the code and report a final score
score = true
# Ignore auto-generated / framework-managed directories
ignore = ["alembic", "__pycache__"]
# Pre-push hook uses this: non-zero exit only for errors/fatal
fail-on = "E,F"
[tool.pylint.format]
max-line-length = 120
[tool.pylint."messages control"]
# Phase 2: errors + warnings
# Progressively enable: R -> C for next phases
disable = "all"
enable = "E,F,W"
# Suppress noisy warnings that are acceptable in this project
[tool.pytest.ini_options]
pythonpath = ["app"]
asyncio_mode = "auto"
testpaths = ["app/tests"]
[tool.pylint.basic]
# Allow TODO comments without triggering fixme warnings
notes = []