| 123456789101112131415161718 |
- # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- # Exceptions. See /LICENSE for license information.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- [mypy]
- disallow_untyped_decorators = true
- warn_unused_configs = true
- disallow_subclassing_any = true
- disallow_untyped_calls = true
- disallow_untyped_defs = true
- disallow_incomplete_defs = true
- check_untyped_defs = true
- no_implicit_optional = true
- warn_redundant_casts = true
- warn_unused_ignores = true
- warn_return_any = true
- ignore_missing_imports = false
- pretty = true
|