From cc58fdac33fad6f9af328b2bdc26fcd5c0274b84 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Mon, 2 Jul 2018 19:18:50 +0530 Subject: [PATCH] setup.cfg: Don't warn about commented code --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index 669c932c1d2b..65a3c64c8640 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,6 +6,8 @@ ignore = E251, # E261: at least two spaces before inline comment E261, + # E265: block comment should start with '# ' + E265, # E501: line too long E501, # E302: expected 2 blank lines, found 1