This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathmypy.ini
74 lines (60 loc) · 2.08 KB
/
mypy.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
; .. License
;
; Copyright (C) 2012-2020 Bryan A. Jones.
;
; This file is part of CodeChat.
;
; CodeChat is free software: you can redistribute it and/or modify it under
; the terms of the GNU General Public License as published by the Free
; Software Foundation, either version 3 of the License, or (at your option)
; any later version.
;
; CodeChat is distributed in the hope that it will be useful, but WITHOUT ANY
; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
; details.
;
; You should have received a copy of the GNU General Public License along
; with CodeChat. If not, see <http://www.gnu.org/licenses/>.
;
; ******************************
; |docname| - mypy configuration
; ******************************
; To run, execute ``mypy`` from the directory containing this file.
;
; This section `must <https://mypy.readthedocs.io/en/stable/config_file.html#config-file-format>`_ be present.
[mypy]
# See `files <https://mypy.readthedocs.io/en/stable/config_file.html#confval-files>`_.
files = .
exclude = (^_build/)|(^alembic/)|(^.tox/)|(^.venv/)
# See https://pydantic-docs.helpmanual.io/mypy_plugin/#enabling-the-plugin.
plugins = pydantic.mypy
; These libraries lack annotations. `Ignore missing imports <https://mypy.readthedocs.io/en/latest/config_file.html#import-discovery>`_.
[mypy-alembic.*]
ignore_missing_imports = True
[mypy-click.*]
ignore_missing_imports = True
[mypy-console_ctrl.*]
ignore_missing_imports = True
[mypy-celery.*]
ignore_missing_imports = True
[mypy-coverage.*]
ignore_missing_imports = True
[mypy-CodeChat.*]
ignore_missing_imports = True
[mypy-fastapi_login.*]
ignore_missing_imports = True
[mypy-polling2.*]
ignore_missing_imports = True
[mypy-pydal.validators.*]
ignore_missing_imports = True
[mypy-pyvirtualdisplay.*]
ignore_missing_imports = True
[mypy-runestone.*]
ignore_missing_imports = True
[mypy-selenium.*]
ignore_missing_imports = True
[mypy-sqlalchemy.*]
ignore_missing_imports = True
[mypy-uvicorn.*]
ignore_missing_imports = True