38 lines
757 B
INI
38 lines
757 B
INI
[metadata]
|
|
license_file = LICENSE
|
|
|
|
[mypy]
|
|
python_version = 3.5
|
|
|
|
[mypy-tornado.util]
|
|
disallow_untyped_defs = True
|
|
|
|
[mypy-tornado.httputil]
|
|
disallow_untyped_defs = True
|
|
|
|
[mypy-tornado.escape]
|
|
disallow_untyped_defs = True
|
|
|
|
[mypy-tornado.concurrent]
|
|
disallow_untyped_defs = True
|
|
|
|
[mypy-tornado.gen]
|
|
disallow_untyped_defs = True
|
|
|
|
# It's generally too tedious to require type annotations in tests, but
|
|
# we do want to type check them as much as type inference allows.
|
|
[mypy-tornado.test.util_test]
|
|
check_untyped_defs = True
|
|
|
|
[mypy-tornado.test.httputil_test]
|
|
check_untyped_defs = True
|
|
|
|
[mypy-tornado.test.escape_test]
|
|
check_untyped_defs = True
|
|
|
|
[mypy-tornado.test.concurrent_test]
|
|
check_untyped_defs = True
|
|
|
|
[mypy-tornado.test.gen_test]
|
|
check_untyped_defs = True
|