1
0
mirror of https://github.com/lutris/lutris synced 2024-07-03 07:28:41 +00:00

Update ruff.toml

This commit is contained in:
Mathieu Comandon 2024-02-24 20:58:42 -08:00
parent 7ec328131b
commit 1a96ec822c

View File

@ -1,3 +1,6 @@
line-length = 120
[lint]
select = ["A", "ARG", "B", "E", "F", "I", "W", "PERF", "RUF"]
ignore = [
# Ignores that is not worth/too hard to fix
@ -33,12 +36,5 @@ ignore = [
"B020", # Loop control variable `upstream_runners` overrides iterable it iterates
"B018", # Found useless expression. Either assign it to a variable or remove it
]
fixable = ["ALL"]
unfixable = []
line-length = 120
[format]
quote-style = "single"