From 0b3057074e785478913ede4aa7062d26a323f8f1 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Fri, 31 Jan 2020 17:08:55 +0100 Subject: [PATCH] Add basic flake8 configuration Signed-off-by: Nils Philippsen --- setup.cfg | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..ed40883 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,9 @@ +[flake8] +show-source = True +max-line-length = 100 +exclude = .git,.tox,dist,*egg,build,tools +#ignore = + +# Configure flake8-import-order +application-import-names = generate_changelog,next_build +import-order-style = google