| # Copyright 2025 The Pigweed Authors |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| # use this file except in compliance with the License. You may obtain a copy of |
| # the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| # License for the specific language governing permissions and limitations under |
| # the License. |
| |
| # This is the mypy.ini file used by the Bazel mypy aspect. See `.mypy.ini` at |
| # the root of the Pigweed repo for the file used by GN. |
| |
| [mypy] |
| # Follow imports but don't report errors in imported code. This is required for |
| # suppression through the "nomypy" tag to work: otherwise, even if you disable |
| # mypy for a library, you will still get errors for it in every targets that |
| # depends on it! |
| follow_imports = silent |
| follow_imports_for_stubs = True |
| |
| # TODO: b/436916773 - Typecheck proto-generated code once we use the protobuf |
| # 32.0 implementation of py_proto_library. |
| [mypy-*.air_sensor_pb2] |
| follow_imports = skip |
| |
| [mypy-*.factory_pb2] |
| follow_imports = skip |
| |
| [mypy-*.pubsub_pb2] |
| follow_imports = skip |
| |