From e89749639a02f96b6b2030a94c62b8f059c5a52b Mon Sep 17 00:00:00 2001 From: Johannes Nussbaum <39048939+jnussbaum@users.noreply.github.com> Date: Fri, 12 Jan 2024 16:02:48 +0100 Subject: [PATCH] chore: add ruff rule to prevent TODO comments (#738) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 77e9d0b1d7..510622b475 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -177,6 +177,7 @@ select = [ "D103", # pydocstyle: undocumented-public-function "D417", # pydocstyle: undocumented-param "B023", # flake8-bugbear: function-uses-loop-variable + "FIX", # flake8-fixme: checks for FIXME, TODO, XXX, etc. ] ignore = [ "ISC001", # flake8-implicit-str-concat: single-line-implicit-string-concatenation # incompatible with the formatter