From b77ab1e6be5aa5534af48460abf5db8bf8c0f6b0 Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Thu, 20 Jun 2024 11:25:46 +0200 Subject: [PATCH] Disable ruff rule COM812 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 1754c08..e1cddfd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -134,6 +134,7 @@ select = [ "YTT", ] ignore = [ + "COM812", # requires trailing commas and can cause undesirable reformats when calling `poe format` multiple times "E501", # line too long. black does a good enough job "E741", # variable names like "l". this isn't a huge problem "B008", # do not perform function calls in argument defaults. we do this sometimes