]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

exclude tests/data/.* from mypy (#3917)
authorJohn Litborn <11260241+jakkdl@users.noreply.github.com>
Fri, 6 Oct 2023 01:15:35 +0000 (03:15 +0200)
committerGitHub <noreply@github.com>
Fri, 6 Oct 2023 01:15:35 +0000 (18:15 -0700)
mypy.ini

index 95ec22d65be73b3a988dee110631099088b1d04a..ad916185bce9589288966c2a855859f55c153c2a 100644 (file)
--- a/mypy.ini
+++ b/mypy.ini
@@ -39,3 +39,8 @@ ignore_missing_imports = True
 
 [mypy-_black_version.*]
 ignore_missing_imports = True
+
+# CI only checks src/, but in case users are running LSP or similar we explicitly ignore
+# errors in test data files.
+[mypy-tests.data.*]
+ignore_errors = True