aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 15d4c7b034f14ea1e70a1e30255e456aaf755221 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[flake8]
max-line-length=120
application-import-names=metricity
import-order-style=pycharm
exclude=alembic,.venv,.cache
extend-ignore=
    # self params in classes.
    ANN101,
    # args and kwargs
    ANN002, ANN003,
    # line break before/after binary operator
    W503, W504,
    # __init__ doc strings
    D107