From a29d6afe267746edb6ca22381decf9b9abf746ee Mon Sep 17 00:00:00 2001 From: Dowon Date: Tue, 9 Apr 2024 21:03:56 +0900 Subject: [PATCH] chore: update ruff rules --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5b24e26..66edde1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,6 +54,7 @@ select = [ "I001", "ISC", "N", + "PD", "PERF", "PIE", "PT", @@ -61,10 +62,13 @@ select = [ "RET", "RUF", "SIM", + "T20", + "TRY", "UP", "W", ] -ignore = ["B008", "B905", "E501", "F401"] +ignore = ["B905", "E501"] +unfixable = ["F401"] [tool.ruff.lint.isort] known-first-party = ["launch", "modules"]