From 0fde8625ae39e4d71de1b29610757b1623368cf3 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 16 Jan 2017 12:51:52 +0100 Subject: [PATCH] add setup.cfg Signed-off-by: Igor Gnatenko --- 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 000000000..e9c0b79a0 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,9 @@ +[flake8] +ignore = + # E261: at least two spaces before inline comment + E261, + # E302: expected 2 blank lines, found 1 + E302, + # E305: expected 2 blank lines after class or function definition, found 1 + E305, +max-line-length = 120