aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ruff.toml
blob: d00d37e04de8a2a47e2cad89a3eed23ad704fc48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]