mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* lint: simplify hooks already covered by Ruff * prune dev dependency * setting E, W, F * poetry? * autopep8 * quote-style = "single" * double-quote-string-fixer * --all-files * apply * Q * drop double-quote-string-fixer * --all-files * apply pre-commit * python3.11 -m poetry lock --no-update --------- Co-authored-by: Robert Brennan <accounts@rbren.io>
21 lines
218 B
TOML
21 lines
218 B
TOML
exclude = [
|
|
"agenthub/monologue_agent/regression/",
|
|
]
|
|
|
|
[lint]
|
|
select = [
|
|
"E",
|
|
"W",
|
|
"F",
|
|
"Q",
|
|
]
|
|
|
|
ignore = [
|
|
"E501",
|
|
]
|
|
|
|
flake8-quotes = {inline-quotes = "single"}
|
|
|
|
[format]
|
|
quote-style = "single"
|