File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8585 mccabe ==0.6.1
8686 pep8-naming ==0.9.1
8787 pydocstyle ==5.0.2
88+ # pin pyflakes pending a release with https://github.com/PyCQA/pyflakes/pull/455
89+ git+git://github.com/PyCQA/pyflakes@ffe9386# egg=pyflakes
8890
8991commands =
9092 flake8 {posargs:src/{env:PY_MODULE}}
@@ -157,6 +159,8 @@ commands =
157159
158160# Global settings
159161
162+ check_untyped_defs = True
163+ disallow_any_generics = True
160164disallow_incomplete_defs = True
161165disallow_untyped_defs = True
162166no_implicit_optional = True
@@ -169,13 +173,7 @@ warn_return_any = True
169173warn_unreachable = True
170174warn_unused_ignores = True
171175
172- # Enable these over time
173- check_untyped_defs = False
174-
175- # Disable some checks until effected files fully adopt mypy
176-
177- [mypy-hyperlink._url]
178- allow_untyped_defs = True
176+ # Don't complain about dependencies known to lack type hints
179177
180178[mypy-idna]
181179ignore_missing_imports = True
You can’t perform that action at this time.
0 commit comments