From ebe48dcecc0c1f72bb0a33279787e8f0c3e81629 Mon Sep 17 00:00:00 2001 From: Caleb Evans Date: Sat, 27 Jan 2024 14:00:31 -0800 Subject: [PATCH] Use official Flake8 VS Code extension This commit switches the third-party cornflakes-linter VS Code extension to the official / first-parrt Flake8 extension by Microsoft. This should fix some issues I've encountered with the former extension where files within the virtualenv or within Python stdlib were linted when they should have been ignored. --- .vscode/extensions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 080b25a8..71baa4a7 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -3,6 +3,6 @@ "EditorConfig.EditorConfig", "ms-python.black-formatter", "matangover.mypy", - "kevinglasson.cornflakes-linter" + "ms-python.flake8" ] }