Skip to content

Commit afac168

Browse files
committed
added UI
1 parent 0ab0144 commit afac168

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.issue.db

0 Bytes
Binary file not shown.

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,11 @@ ignore = []
8585

8686
[tool.ruff.lint.per-file-ignores]
8787
"tests/*" = ["S101"] # Allow assert statements in tests
88+
"issuedb/web.py" = ["E501"] # HTML templates have long lines
8889

8990
[tool.mypy]
9091
python_version = "3.9"
92+
strict = true
9193
warn_return_any = true
9294
warn_unused_configs = true
9395
disallow_untyped_defs = true
@@ -97,3 +99,15 @@ check_untyped_defs = true
9799
warn_unused_ignores = true
98100
show_error_codes = true
99101
strict_optional = true
102+
exclude = [".venv", "venv", "build", "dist"]
103+
104+
[[tool.mypy.overrides]]
105+
module = "tests.*"
106+
disallow_untyped_defs = false
107+
disallow_incomplete_defs = false
108+
disallow_untyped_decorators = false
109+
disable_error_code = ["arg-type", "operator", "attr-defined"]
110+
111+
[[tool.mypy.overrides]]
112+
module = ["pytest", "_pytest.*"]
113+
follow_imports = "skip"

0 commit comments

Comments
 (0)