From 6b88fbd1e3f61a4b977d068ce2257d83e2b31570 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 6 Nov 2021 02:51:14 -0400 Subject: [PATCH] Clean up linter after Black add (pass two) --- lint | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lint b/lint index 953235c9..eb2392f6 100755 --- a/lint +++ b/lint @@ -6,10 +6,11 @@ fi # We ignore the following errors: # * W503 (line break before binary operator): Black moves these to new lines -# * E501 (line too long): Long lines are a fact of life +# * E501 (line too long): Long lines are a fact of life in comment blocks; Black handles active instances of this flake8 \ --ignore=W503,E501 \ - --exclude=debian,api-daemon/migrations/versions,api-daemon/provisioner/examples + --exclude=debian,api-daemon/migrations/versions,api-daemon/provisioner/examples \ + --max-line-length=88 ret=$? if [[ $ret -eq 0 ]]; then echo "No linting issues found!"