From 53ffb80740991f7506c86dc3103ab42be8264580 Mon Sep 17 00:00:00 2001 From: David Runge Date: Mon, 11 Oct 2021 21:27:11 +0200 Subject: [PATCH] Add flake8 configuration .flake8: Add integration for flake8. Set maximum line length to 120 and maximum complexity to 10. --- .flake8 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..5811c8b --- /dev/null +++ b/.flake8 @@ -0,0 +1,4 @@ +[flake8] +max-line-length = 120 +output-file = flake8.txt +max-complexity = 10