From a0ea1eeaf72941f03fbc58adedd94e4306b81d05 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Mon, 6 Dec 2021 12:57:34 +0100 Subject: [PATCH] flake8: Initial configuration Set max line length to 120. Keep the all the other settings on their default values. --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..2b40afff --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[flake8] +exclude = .git,__pycache__ +max-line-length = 120