From 44722b4e93f854d94df33b619f9bec9444512450 Mon Sep 17 00:00:00 2001 From: Vic Wong Date: Sun, 1 Sep 2024 11:47:21 -0700 Subject: [PATCH] add max line length to pylint args --- .vscode/settings.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index d25743e4..75f22d1a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,8 @@ { - "pylint.args": ["--rcfile=${workspaceFolder}/code_quality/.pylintrc"], + "pylint.args": [ + "--rcfile=${workspaceFolder}/code_quality/.pylintrc", + "--max-line-length=100" + ], "[python]": { "editor.formatOnSave": true, "editor.codeActionsOnSave": {