From 3ab62e56dde2319ba6c0039f804093d03d1f6206 Mon Sep 17 00:00:00 2001 From: Nick Jackson Date: Thu, 9 Jan 2025 11:54:40 +0000 Subject: [PATCH] Add "EXE" checks to ruff --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 457a5e8..2252793 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,8 +3,8 @@ line-length = 120 [tool.ruff.lint] ignore = ["E501", "G004", "PLR2004", "RUF005", "RUF012", "UP040"] # longlines, fstrings in logs, magic values, consider not concat, mutable classbits, type instead of TypeAlias -extend-select = ["W", "I", "SLF", "SIM", "B", "Q", "A", "COM", "C90", "UP", "YTT", "ASYNC", "BLE", "C4", "DTZ", "T10", "DJ" ] -# extend-select = [ "S", "EM", "EXE", "FA", +extend-select = ["W", "I", "SLF", "SIM", "B", "Q", "A", "COM", "C90", "UP", "YTT", "ASYNC", "BLE", "C4", "DTZ", "T10", "DJ", "EXE" ] +# extend-select = [ "S", "EM", "FA", # "ISC", "ICN", "G", "INP", "PIE", "T20", "PYI", "PT", "RSE", "RET", "SLOT", "TID", "TCH", "INT", "PTH", # "FIX", "PGH", "PL", "TRY", "FLY", "PERF", "RUF"] unfixable = ["ERA"]