From 85fde70f078df70f516858ec9f886c72a012be9b Mon Sep 17 00:00:00 2001 From: Pierre Kancir Date: Thu, 2 Aug 2018 12:02:17 +0200 Subject: [PATCH] Global: add .flake8 --- .flake8 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000000..4539bc44d2 --- /dev/null +++ b/.flake8 @@ -0,0 +1,12 @@ +[flake8] +ignore = + # H301: one import per line + H301, + # H306: imports not in alphabetical order (time, os) + H306, + # E226: missing whitespace around arithmetic operator + E226, + # E261 at least two spaces before inline comment + E261 + +max-line-length = 127