38 lines
654 B
TOML
38 lines
654 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.ruff]
|
|
extend-select = ["I", "W", "UP", "C4", "ISC"]
|
|
# Worth selecting but still too broken: ASYNC, S, B, DTZ, FA
|
|
ignore = [
|
|
"D100",
|
|
"D101",
|
|
"D102",
|
|
"D103",
|
|
"E402",
|
|
"E741",
|
|
"F811",
|
|
"F821",
|
|
# ruff format complains about these:
|
|
"ISC001",
|
|
"W191",
|
|
]
|
|
show-source = true
|
|
show-fixes = true
|
|
|
|
[tool.ruff.isort]
|
|
known-first-party = ["sanic"]
|
|
known-third-party = ["pytest"]
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = [
|
|
"httptools.*",
|
|
"trustme.*",
|
|
"sanic_routing.*",
|
|
"aioquic.*",
|
|
"html5tagger.*",
|
|
"tracerite.*",
|
|
]
|
|
ignore_missing_imports = true
|