diff options
| author | 2021-02-28 14:26:39 +0300 | |
|---|---|---|
| committer | 2021-02-28 14:26:39 +0300 | |
| commit | cf13799c32d4c9ef9098215fc103f4a144077581 (patch) | |
| tree | 8538fe46d101fb2f953df7fb19da93c10643dc88 /tox.ini | |
| parent | Merge pull request #64 from python-discord/abouelela-codeowners (diff) | |
| parent | Merge branch 'main' into feat/9/unittest-validation (diff) | |
Merge pull request #63 from python-discord/feat/9/unittest-validation
Support code unit testing through snekbox
Diffstat (limited to '')
| -rw-r--r-- | tox.ini | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |