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