Files
Scrapling/ruff.toml
T
2025-04-13 17:32:00 +02:00

23 lines
326 B
TOML

exclude = [
".git",
".venv",
"__pycache__",
"docs",
".github",
"build",
"dist",
"tests",
"benchmarks.py",
]
# Assume Python 3.9
target-version = "py39"
[lint]
select = ["E", "F", "W"]
ignore = ["E501", "F401"]
[format]
# Like Black, use double quotes for strings.
quote-style = "double"