From 4c99282aefbf754a21bb3b6c596eae8d0d591afb Mon Sep 17 00:00:00 2001 From: Duncan Tourolle Date: Sat, 8 Nov 2025 23:46:28 +0100 Subject: [PATCH] setup cfg file --- setup.cfg | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/setup.cfg b/setup.cfg index 08bdda7..827766e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,3 +21,17 @@ install_requires = [options.packages.find] include = pyWebLayout* + +[flake8] +exclude = + venv, + build, + dist, + .git, + __pycache__, + .pytest_cache, + *.egg-info +max-line-length = 120 +extend-ignore = E203 +per-file-ignores = + *:F841