From d9fb9c2a9dfb74fe5f9d86451f2a6c58e1d79b74 Mon Sep 17 00:00:00 2001 From: stephen-f0 <116006802+stephen-f0@users.noreply.github.com> Date: Mon, 22 Dec 2025 10:19:03 +0000 Subject: [PATCH] Fix Black formatter workspace defaults --- .vscode/settings.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2eb6c00..33db38f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -50,5 +50,13 @@ "python.linting.ignorePatterns": [ "**/de_bruijn.py", "**/site-packages/**/*.py" + ], + "editor.defaultFormatter": "ms-python.black-formatter", + "black-formatter.args": [ + "--line-length=120" + ], + "flake8.args": [ + "--max-line-length=120", + "--ignore=E203,E701" ] } \ No newline at end of file