summaryrefslogtreecommitdiff
path: root/ruff.toml
blob: f7411a3190748be5efdb5537ef7643f3d4831c9e (plain)
1
2
3
4
5
6
7
8
9
line-length = 80  # defaults to 88 like black This is for test
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
]