diff --git a/config.yaml b/config.yaml index 089c066..87a4ed4 100644 --- a/config.yaml +++ b/config.yaml @@ -403,6 +403,10 @@ dotfiles: # Just a bunch of paths and action mappings src: clang-format dst: ~/.clang-format + mypy: + src: mypy + dst: ~/.config/mypy/config + gpg-agent: src: gpg-agent.conf dst: ~/.gnupg/gpg-agent.conf diff --git a/dotfiles/mypy b/dotfiles/mypy new file mode 100644 index 0000000..976ba02 --- /dev/null +++ b/dotfiles/mypy @@ -0,0 +1,2 @@ +[mypy] +ignore_missing_imports = True