From 7d6e4353f1d26c826705fe6bd7649448d483dbb4 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 6 Nov 2021 02:44:24 -0400 Subject: [PATCH] Clean up linter after Black add (pass one) --- lint | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lint b/lint index dc7c76eb..953235c9 100755 --- a/lint +++ b/lint @@ -1,12 +1,14 @@ #!/usr/bin/env bash - if ! which flake8 &>/dev/null; then echo "Flake8 is required to lint this project" exit 1 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 flake8 \ - --ignore=E201,E202,E222,E501,E241,F522,F523,F541 \ + --ignore=W503,E501 \ --exclude=debian,api-daemon/migrations/versions,api-daemon/provisioner/examples ret=$? if [[ $ret -eq 0 ]]; then