summaryrefslogtreecommitdiff
path: root/ruff.toml
blob: d85ceb7ea7fca73c299c8d9d5c261eec64e3ad83 (plain)
1
2
3
4
5
6
7
8
9
line-length = 100  # defaults to 88 like black
target-version = "py39"  # the python version to target, useful when considering code upgrades, defaults to "py310"

select = [
  "E",   # pycodestyle
  "F",   # pyflakes
  "UP",  # pyupgrade,
  "I",   # isort
]