aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 451c3dd3ccef8ce60c4a1146c3b26ff35fbc0274 (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
    ANN002,ANN003,ANN101,ANN102
    # Line breaks
    W503