From 4a62127c3c45fd128fb7cea785cd5107a1597405 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Fri, 29 Nov 2024 12:54:38 +0100 Subject: [PATCH] fix --- setup.cfg | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/setup.cfg b/setup.cfg index 7a5bb984..e5c94828 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,3 +4,14 @@ include_trailing_comma=True multi_line_output=3 force_grid_wrap=0 combine_as_imports=True + +[flake8] +extend-select = + B950, + # NIC001 -- "Implicitly concatenated str literals on one line" + NIC001, + # NIC101 -- "Implicitly concatenated bytes literals on one line" + NIC101, +# TODO: don't disable D*, fix up issues instead +ignore = N801,N802,N803,NIC002,NIC102,E203,E226,E305,W504,E252,E301,E302,E501,E704,W503,W504,D1,D4 +max-line-length = 88