diff options
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -2,9 +2,13 @@ max-line-length=120 application-import-names=metricity import-order-style=pycharm -exclude=alembic +exclude=alembic,.venv extend-ignore= # self params in classes. ANN101, + # args and kwargs + ANN002, ANN003, # line break before/after binary operator - W503, W504 + W503, W504, + # __init__ doc strings + D107 |