summaryrefslogtreecommitdiff
path: root/ruff.toml
blob: e363f95cd844528d135c7f2697c9148578bea7bb (plain)
1
2
3
4
5
6
7
8
9
line-length = 80  # 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
]