workflows/pyproject.toml

13 lines
221 B
TOML
Raw Permalink Normal View History

2023-12-08 18:04:16 +08:00
[tool.ruff]
2024-05-09 21:16:22 +08:00
target-version = "py38"
2023-12-08 18:04:16 +08:00
line-length = 100
[tool.ruff.lint]
2024-05-09 21:16:22 +08:00
select = [
"E", # Error
"W", # Warning
"F", # pyflakes
"I", # isort
]
fixable = ["ALL"]
extend-select = ["E501"] # Line too long