aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ruff.toml
diff options
context:
space:
mode:
Diffstat (limited to 'ruff.toml')
-rw-r--r--ruff.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/ruff.toml b/ruff.toml
index 2a53694..d00d37e 100644
--- a/ruff.toml
+++ b/ruff.toml
@@ -8,7 +8,11 @@ select = [
"W", # pycodestyle
"I", # isort
"UP", # pyupgrade
+ "A", # flake8-builtins
"B", # flake8-bugbear
"SIM", # flake8-simplify
"FURB" # refurb
]
+
+[lint.flake8-builtins]
+builtins-ignorelist = ["exit"]