vscodium mypy: silence missing import checks by default

This commit is contained in:
Trolli Schmittlauch 2023-10-20 21:31:56 +02:00
parent e6b13ad7b6
commit adcfb11f72

View file

@ -189,6 +189,7 @@ let
gitui gitui
lazygit lazygit
pre-commit pre-commit
scriv
# Haskell # Haskell
ghc ghc
@ -381,6 +382,9 @@ in
"black-formatter.importStrategy" = "fromEnvironment"; "black-formatter.importStrategy" = "fromEnvironment";
"mypy-type-checker.path" = ["${pkgs.python3Packages.mypy}/bin/mypy"]; "mypy-type-checker.path" = ["${pkgs.python3Packages.mypy}/bin/mypy"];
"mypy-type-checker.importStrategy" = "fromEnvironment"; "mypy-type-checker.importStrategy" = "fromEnvironment";
"mypy-type-checker.args" = [
"--ignore-missing-imports"
];
"gitlens.telemetry.enabled" = false; "gitlens.telemetry.enabled" = false;
"vim.highlightedyank.enable" = true; "vim.highlightedyank.enable" = true;
"vim.history" = 500; "vim.history" = 500;