From 3f2694f07fdeeaf4f12ae6629155a42a606c7ae7 Mon Sep 17 00:00:00 2001 From: insolor <2442833+insolor@users.noreply.github.com> Date: Sun, 9 Jun 2024 16:47:28 +0300 Subject: [PATCH] Remove some ruff ignore rules --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b6a18ca..91292e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,8 +39,6 @@ ignore = [ # "D105", # Missing docstring in magic method # "D200", # One-line docstring should fit on one line # "D212", # Multi-line docstring summary should start at the first line - "TD", # Ignore todo warnings - "FIX002", # Ignore todo warnings ] [tool.ruff.lint.per-file-ignores] @@ -48,5 +46,4 @@ ignore = [ "S101", # Don't warn about using of asserts in tests "ANN201", # Ignore "Missing return type annotation for public function", tests don't return anything "D", # Don't warn about missing documentation in tests - "RUF001", # String contains ambiguous {}. Did you mean {}? ]