From 991ace04afdd2eb010f8c94c00de7c3e1f197f60 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sat, 21 Jan 2017 13:01:05 +0530 Subject: Disable E266 in flake8 Don't tell me how to format my comments! --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'setup.cfg') diff --git a/setup.cfg b/setup.cfg index 9374560de..823c84dfa 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,5 +13,7 @@ ignore = # E305: expected 2 blank lines after class or function definition, found 1 E305, # E401: multiple imports on one line - E401 + E401, + # too many leading '#' for block comment + E266 max-line-length = 120 -- cgit v1.2.3