Skip to content
Snippets Groups Projects
ruff.toml 197 B
Newer Older
line-length = 120

[format]
# Like Black, use double quotes for strings.
quote-style = "double"

[lint]
select = ["Q0", "F", "W", "E",
    # request-without-timeout
    "S113",
]
ignore = ["E501"]