From f51d297ee33ae0a23c457c7f7ea744ff3b2b2297 Mon Sep 17 00:00:00 2001 From: Jonas Dittrich <58814480+Kakadus@users.noreply.github.com> Date: Mon, 20 Nov 2023 17:41:11 +0100 Subject: [PATCH] enable some pylint rules --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 764f642d5f..399f4f9ba5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ extend_skip_glob = ["**/migrations/*"] [tool.ruff] target-version = "py310" line-length = 120 -select = ["F", "E", "B", "W", "N", "UP", "YTT", "FIX", "ASYNC", "A", "DJ", "EXE", "ICN", "G", "SLOT", "TID", "TCH", "INT", "C4", "ISC", "INP", "PIE", "RSE", "RET", "COM","PGH","FLY", "PERF"] # PYI,Q,SIM,PTH,PL,TRY,RUF +select = ["F", "E", "B", "W", "N", "UP", "YTT", "FIX", "ASYNC", "A", "DJ", "EXE", "ICN", "G", "SLOT", "TID", "TCH", "INT", "C4", "ISC", "INP", "PIE", "RSE", "RET", "COM","PGH","FLY", "PERF", "PLE"] # PYI,Q,SIM,PTH,PL,TRY,RUF ignore = [ "E501", # line-too-long: black does code formatting for us "FIX004", # hacks should be possible