From c03ae0a571287f4f6a129993c6589efc472c731a Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Fri, 27 Aug 2021 17:58:34 +0200 Subject: [PATCH] lint: add flake8 configuration Black allows up to 88 characters per line. Put this configuration into a separated file, as pyproject.toml won't do ref. https://github.com/PyCQA/flake8/issues/234 --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..2bcd70e --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 88