aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 4778c16f889426bb4180cd9ba5c41711122745b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
[flake8]
max-line-length=120
application-import-names=metricity
import-order-style=pycharm
exclude=alembic
extend-ignore=
    # self params in classes.
    ANN101,
    # line break before/after binary operator
    W503, W504