aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: afb3b34175dcb7c9089fedf26cb5c24a8e7eb829 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
[flake8]
max-line-length=100
exclude=.cache,.venv,.git
docstring-convention=all
import-order-style=pycharm
ignore=
    # Type annotations
    ANN101,ANN102
    # Line breaks
    W503