2025-06-09 10:32:47 -03:00
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 120
|
2026-04-29 20:22:24 -03:00
|
|
|
target-version = "py39"
|
2025-06-09 10:32:47 -03:00
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
# https://docs.astral.sh/ruff/rules/
|
2025-06-09 18:28:07 -03:00
|
|
|
extend-select = [
|
|
|
|
|
"B", # flake8-bugbear
|
|
|
|
|
"I", # isort
|
|
|
|
|
]
|
2025-06-09 10:32:47 -03:00
|
|
|
|
|
|
|
|
[tool.ruff.lint.isort]
|
|
|
|
|
force-single-line = true
|
|
|
|
|
lines-between-types = 1
|
2026-04-30 00:08:13 -03:00
|
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
|
pythonVersion = "3.9"
|
|
|
|
|
extraPaths = ["Meta"]
|
|
|
|
|
exclude = [
|
|
|
|
|
"**/node_modules",
|
|
|
|
|
"**/__pycache__",
|
|
|
|
|
"**/.*",
|
|
|
|
|
"**/lit.cfg.py",
|
2026-03-24 18:08:36 -03:00
|
|
|
"Tests/LibWeb/Text/input/wpt-import",
|
2026-04-30 00:08:13 -03:00
|
|
|
]
|