From ccf6113e28fe696cfacacc905a73be504ccf6ca3 Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Wed, 11 Mar 2020 13:32:45 +0100 Subject: [PATCH] Add .flake8 configuration --- .flake8 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..0783764 --- /dev/null +++ b/.flake8 @@ -0,0 +1,5 @@ +[flake8] +# E203 is not PEP8 compliant and is not compatible with black: +# https://black.readthedocs.io/en/stable/the_black_code_style.html#slices +# The same goes of E231 and W503 conflicts with black, too. +ignore = E203,E231,W503