From 116856e80bb5f951f23d2318031f0a8be6f846ce Mon Sep 17 00:00:00 2001 From: Jesper Lloyd Date: Fri, 15 May 2020 16:45:14 +0200 Subject: [PATCH] hound: ignore 'black would make changes' [skip ci] There are too many places in the code where usage of single or double quotes is inconsistent. The primary problem is that for now, hound doesn't inform us of __what__ the changes that the formatter would make __are__, making the error message not particularly useful. --- .hound.yml | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.hound.yml b/.hound.yml index dd4b4479a..2dc06f8c6 100644 --- a/.hound.yml +++ b/.hound.yml @@ -7,3 +7,4 @@ fail_on_violations: true flake8: enabled: true + config_file: setup.cfg diff --git a/setup.cfg b/setup.cfg index d76023e87..5a3a4d6b3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,7 +20,7 @@ verbosity=2 # Syntax checking: [flake8] -ignore = E266,W503,E251,E226 +ignore = E266,W503,E251,E226,BLK100 exclude = .git, __pycache__,