vscodium mypy: silence missing import checks by default
This commit is contained in:
parent
e6b13ad7b6
commit
adcfb11f72
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue