From 1a96ec822c7f39275526cb22aeebcb64a5a76afb Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Sat, 24 Feb 2024 20:58:42 -0800 Subject: [PATCH] Update ruff.toml --- ruff.toml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/ruff.toml b/ruff.toml index 1d82e25eb..71e77ee87 100644 --- a/ruff.toml +++ b/ruff.toml @@ -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"