From da742f06992e089b905a87153a08a2512285cf24 Mon Sep 17 00:00:00 2001 From: Krzysztof kuhy Rudnicki Date: Sun, 30 Nov 2025 23:03:56 +0100 Subject: [PATCH] chore(lint): remove empty per-file ignores from pyproject.toml --- pyproject.toml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index aa1e8d9..f6186d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,15 +63,9 @@ unfixable = [] "D100", # Allow missing module docstring "D103", # Allow missing function docstring ] -"python_pkg/random_jpg/generate_jpeg.py" = [ -] -"python_pkg/tag_divider/tag_divider.py" = [ -] "poker_modifier_app/poker_modifier_app.py" = [ "FBT003", # Boolean positional values in tkinter API calls ] -"python_pkg/download_cats/generate_cats.py" = [ -] "python_pkg/lichess_bot/main.py" = [ "C901", # Complex functions handling game lifecycle (run_bot, handle_game) "PLR0912", # Complex nested game event handling with many branches @@ -81,10 +75,6 @@ unfixable = [] "python_pkg/lichess_bot/engine.py" = [ "S603", # Subprocess for engine communication ] -"python_pkg/lichess_bot/utils.py" = [ -] -"python_pkg/lichess_bot/tools/generate_blunder_tests.py" = [ -] "python_pkg/stockfish_analysis/analyze_chess_game.py" = [ "C901", # Complex main() with many argument combinations and analysis modes "PLR0912", # Complex main() with many argument combinations and analysis modes @@ -96,10 +86,6 @@ unfixable = [] "python_pkg/screen_locker/screen_lock.py" = [ "FBT003", # Boolean positional values in tkinter API calls ] -"python_pkg/scrape_website/scrape_comics.py" = [ -] -"python_pkg/extract_links/main.py" = [ -] [tool.ruff.lint.pydocstyle] convention = "google" # Use Google docstring convention