remove stupid rules
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user