From 1efa0a7552e2d8ae2f4523bbf589f999af11d3ab Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sat, 21 Dec 2019 17:06:41 +0100 Subject: [PATCH] Add black-compatible flake8 configuration. --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.cfg b/setup.cfg index 326d97a81e..1b24e6d1e5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,3 +7,7 @@ line_length = 119 lines_after_imports = 2 multi_line_output = 3 use_parentheses = True + +[flake8] +ignore = E203, E501, W503 +max-line-length = 119