aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/ruff.toml
blob: 2a53694d9324e3ae6208366346f9918642ffaf6d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                    
include = ["later"]

[lint]
# https://docs.astral.sh/ruff/rules/
select = [
	"F",   # pyflakes
	"E",   # pycodestyle
	"W",   # pycodestyle
	"I",   # isort
	"UP",  # pyupgrade
	"B",   # flake8-bugbear
	"SIM", # flake8-simplify
	"FURB" # refurb
]