aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 4c3386e7df07673052f7ca037872018e86879545 (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
extend-ignore=
    # self params in classes.
    ANN101,
    # args and kwargs
    ANN002, ANN003,
    # line break before/after binary operator
    W503, W504,
    # __init__ doc strings
    D107