aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-02-24 13:53:08 +0100
committerGravatar Matteo Bertucci <[email protected]>2021-02-24 13:53:08 +0100
commitda6b581185e8bbe37e561a05827c8517824c7d2c (patch)
tree2b4f0591fc9b76b74eaa1afd17161758331777c1 /tox.ini
parentHook up unittesting in the submit protocol (diff)
Switch to 100 chars line length and get rid of the noqas
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 48a3da6..afb3b34 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,8 +1,10 @@
[flake8]
-max-line-length=88
+max-line-length=100
exclude=.cache,.venv,.git
docstring-convention=all
import-order-style=pycharm
ignore=
# Type annotations
ANN101,ANN102
+ # Line breaks
+ W503