From a480cbbdcbd27d6fae4959f5d703e04fd35624df Mon Sep 17 00:00:00 2001 From: Thomas Faria <57811152+ThomasFaria@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:25:03 +0100 Subject: [PATCH] increase flake max line length default value (#163) --- vscode/settings/User.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vscode/settings/User.json b/vscode/settings/User.json index 1b8838c2..98bfb637 100644 --- a/vscode/settings/User.json +++ b/vscode/settings/User.json @@ -4,4 +4,7 @@ "terminal.integrated.inheritEnv": false, "python.testing.pytestEnabled": true, "fauxpilot.enabled": false + "python.linting.flake8Args": [ + "--max-line-length=100", +] }