From 4a9d35702c1cf20e55b6de5c61f52fdffba5a072 Mon Sep 17 00:00:00 2001 From: Joshix Date: Fri, 26 Jan 2024 19:00:00 +0000 Subject: [PATCH] configure flake8 and pylint see: https://github.com/psf/black/issues/4173 --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 1873294..ff1a03d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ extend-exclude = build,venv,dist max-line-length = 80 max-complexity = 5 -ignore = E501,W503 +ignore = E501,E704,W503 select = B,B9,C,D,E,F,N8,RST,SCR,SIM,W,INP require-plugins = flake8-builtins @@ -53,6 +53,7 @@ disable= locally-disabled, suppressed-message, docstring-first-line-empty, + multiple-statements, too-many-public-methods, too-few-public-methods, too-many-arguments,