From db07262623cfef21a870b77f66fe7c3a44adabe4 Mon Sep 17 00:00:00 2001 From: Jon Date: Fri, 14 Feb 2025 23:19:38 +0930 Subject: [PATCH] feat(development): add pylit settings ref: #570 --- .vscode/settings.json | 2 ++ pyproject.toml | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 pyproject.toml diff --git a/.vscode/settings.json b/.vscode/settings.json index f4efc816..40251748 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -19,4 +19,6 @@ ], "cSpell.language": "en-AU", "jest.enable": false, + "pylint.enabled": true, + "pylint.importStrategy": "fromEnvironment", } \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..59760201 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,4 @@ +[tool.pylint.main] +disable = [ + "all" +]