remove stupid rules

This commit is contained in:
Deeman
2025-10-12 21:44:56 +02:00
parent 7e06eae5ac
commit 6c93021f2d
9 changed files with 20 additions and 35 deletions

View File

@@ -83,30 +83,12 @@ exclude = [
"notebooks",
]
# Set line length to match common Python style
line-length = 88
indent-width = 4
# Assume Python 3.13
target-version = "py313"
[tool.ruff.lint]
# Enable recommended rules plus additional useful ones
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"PL", # pylint
"RUF", # ruff-specific rules
]
# Ignore specific rules that may be too strict
ignore = [
"E501", # line too long (handled by formatter)
"PLR0913", # too many arguments to function call