From cfb8bb8edeb2b4f102145ac229fa9dc6a6597c01 Mon Sep 17 00:00:00 2001 From: DoyunShin Date: Thu, 21 Sep 2023 11:31:04 +0000 Subject: [PATCH] feat(vscode): Set mypy as a default linter. using vscode:extension/matangover.mypy to lint the codes. --- .vscode/settings.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e799dfae..6151989f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,5 @@ { - "python.analysis.typeCheckingMode": "strict", -} + "mypy.enabled": true, + "mypy.configFile": "mypy.ini", + "mypy.dmypyExecutable": "/root/.local/share/virtualenvs/www-ZVUe9YDU/bin/dmypy", +} \ No newline at end of file