From 4ee7adc48dfdf4f41aeadc43c778a02edb28a0e4 Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Tue, 1 Dec 2020 10:16:01 +0100 Subject: [PATCH] config: add setup.cfg Copy this file from pybricks-api, to make flake8 a bit less strict about longer lines, so that projects that previously passed all checks, still pass. --- setup.cfg | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..70225b0 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,7 @@ + +[flake8] +exclude = .venv/ +max-line-length = 88 + +[doc8] +ignore-path = .venv/,doc/api/build/,pybricks.egg-info/