fix: remove all pylint disable comments and enable all meta checks

This commit is contained in:
Krzysztof kuhy Rudnicki 2025-12-01 16:22:03 +01:00
parent 7b388d27b5
commit cd894f039e
6 changed files with 15 additions and 22 deletions

View File

@ -149,17 +149,8 @@ ignore-patterns = [".*\\.pyi$"]
[tool.pylint.messages_control]
# Enable all checks by disabling disable
enable = "all"
# Minimal disabled checks - pylint internal/meta messages only
disable = [
"raw-checker-failed",
"bad-inline-option",
"locally-disabled",
"file-ignored",
"suppressed-message",
"useless-suppression",
"deprecated-pragma",
"use-symbolic-message-instead",
]
# No disabled checks - maximum strictness
disable = []
[tool.pylint.format]
# Maximum line length (same as ruff/black)
@ -202,8 +193,8 @@ ignore-imports = true
spelling-dict = ""
[tool.pylint.typecheck]
# Ignore missing members for dynamic modules
ignored-modules = ["chess", "pygame", "cv2", "PIL"]
# Ignore missing members for dynamic modules (optional dependencies)
ignored-modules = ["chess", "pygame", "cv2", "PIL", "mitmproxy", "selenium", "bs4", "lxml", "berserk", "bottle"]
# ============================================================================
# BANDIT - Security linter

View File

@ -1,6 +1,6 @@
"""Lichess API client for bot interactions."""
from collections.abc import Generator # pylint: disable=import-error
from collections.abc import Generator
import contextlib
from http import HTTPStatus
import json

View File

@ -27,7 +27,7 @@ def get_and_increment_version() -> int:
path = _version_file_path()
current = 0
try:
with Path(path).open() as f:
with Path(path).open(encoding="utf-8") as f:
raw = f.read().strip()
if raw:
current = int(raw)
@ -38,13 +38,13 @@ def get_and_increment_version() -> int:
new_version = current + 1
try:
tmp_path = Path(path + ".tmp")
with tmp_path.open("w") as f:
with tmp_path.open("w", encoding="utf-8") as f:
f.write(str(new_version))
tmp_path.replace(path)
except OSError:
# As a fallback, try a direct write; failure is non-fatal to bot operation
try:
with Path(path).open("w") as f:
with Path(path).open("w", encoding="utf-8") as f:
f.write(str(new_version))
except OSError:
_logger.debug("Could not persist bot version to %s", path)

View File

@ -1,6 +1,6 @@
"""Mitmproxy addon to simulate connection failures."""
from mitmproxy import http # pylint: disable=import-error
from mitmproxy import http
def request(flow: http.HTTPFlow) -> None:

View File

@ -6,14 +6,10 @@ from pathlib import Path
from urllib.parse import urlparse
import requests
# pylint: disable=import-error
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.by import By
# pylint: enable=import-error
_logger = logging.getLogger(__name__)
REQUEST_TIMEOUT = 30 # seconds

View File

@ -16,5 +16,11 @@
"workout_data": {
"type": "strength"
}
},
"2025-12-01": {
"timestamp": "2025-12-01T11:08:00.578301+00:00",
"workout_data": {
"type": "strength"
}
}
}