blob: d00d37e04de8a2a47e2cad89a3eed23ad704fc48 (
plain) (
tree)
|
|
include = ["later"]
[lint]
# https://docs.astral.sh/ruff/rules/
select = [
"F", # pyflakes
"E", # pycodestyle
"W", # pycodestyle
"I", # isort
"UP", # pyupgrade
"A", # flake8-builtins
"B", # flake8-bugbear
"SIM", # flake8-simplify
"FURB" # refurb
]
[lint.flake8-builtins]
builtins-ignorelist = ["exit"]
|