From a4a8c00e0fa378dbbdfdf69ec54e28992b1b62a8 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 22 Jan 2016 19:39:21 +0100 Subject: [PATCH] flake8: Ignore L302 (ebb-lint "line was too long") --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 50489de2b..5c1947a51 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,7 @@ exclude = .venv,.hypothesis,.git,__pycache__,resources.py # being concatenated is parenthesize # L207: pass is only necessary in non-optional suites containing no other # statements. +# L302: The line was too long. # P101: format string does contain unindexed parameters # P102: docstring does contain unindexed parameters # P103: other string does contain unindexed parameters @@ -26,7 +27,7 @@ ignore = E128,E226,E265,E501,E402,E266, F401, N802, - L101,L102,L103,L201,L202,L203,L204,L207, + L101,L102,L103,L201,L202,L203,L204,L207,L302, P101,P102,P103, D001 max-complexity = 12