]> git.madduck.net Git - etc/vim.git/blob - mypy.ini

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:

blib2to3: add a few annotations (#3675)
[etc/vim.git] / mypy.ini
1 [mypy]
2 # Specify the target platform details in config, so your developers are
3 # free to run mypy on Windows, Linux, or macOS and get consistent
4 # results.
5 python_version=3.7
6
7 mypy_path=src
8
9 show_column_numbers=True
10 show_error_codes=True
11
12 # be strict
13 strict=True
14
15 # except for...
16 no_implicit_reexport = False
17
18 # Unreachable blocks have been an issue when compiling mypyc, let's try
19 # to avoid 'em in the first place.
20 warn_unreachable=True
21
22 [mypy-blib2to3.driver.*]
23 ignore_missing_imports = True
24
25 [mypy-IPython.*]
26 ignore_missing_imports = True
27
28 [mypy-colorama.*]
29 ignore_missing_imports = True
30
31 [mypy-pathspec.*]
32 ignore_missing_imports = True
33
34 [mypy-tokenize_rt.*]
35 ignore_missing_imports = True
36
37 [mypy-uvloop.*]
38 ignore_missing_imports = True
39
40 [mypy-_black_version.*]
41 ignore_missing_imports = True