From f20b78c93f91f938e509417912282b9d442746f9 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Fri, 28 Jun 2019 17:00:28 +0200 Subject: [PATCH] Replace pylint with flake8 This change removes the use of pylint and implements similar code style checks. This is complementary with black code formatter. --- .flake8 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..15e152a --- /dev/null +++ b/.flake8 @@ -0,0 +1,6 @@ +[flake8] +ignore = E203, E266, E501, W503 +max-line-length = 80 +max-complexity = 18 +select = B,C,E,F,W,T4,B9 +