The MyPy Python type checker (http://mypy-lang.org/).
Config section: [mypy]
Basic options
--[no-]mypy-skip
PANTS_MYPY_SKIP
skip
False
Don't use MyPy when running `./pants lint`.
--mypy-args="[<shell_str>, <shell_str>, ...]"
PANTS_MYPY_ARGS
args
[]
Arguments to pass directly to mypy, e.g. `--mypy-args="--python-version 3.7 --disallow-any-expr"`
Advanced options
--mypy-version=<str>
PANTS_MYPY_VERSION
version
mypy==0.782
Requirement string for the tool.
--mypy-extra-requirements="['<str>', '<str>', ...]"
PANTS_MYPY_EXTRA_REQUIREMENTS
extra_requirements
[]
Any additional requirement strings to use with the tool. This is useful if the tool allows you to install plugins or if you need to constrain a dependency to a certain version.
--mypy-entry-point=<str>
PANTS_MYPY_ENTRY_POINT
entry_point
mypy
The main module for the tool. Usually, you will not want to change this from the default.
--mypy-interpreter-constraints="['<str>', '<str>', ...]"
PANTS_MYPY_INTERPRETER_CONSTRAINTS
interpreter_constraints
[ "CPython>=3.6" ]
Python interpreter constraints for this tool.
--mypy-config=<file_option>
PANTS_MYPY_CONFIG
config
None
Path to `mypy.ini` or alternative MyPy config file
--mypy-source-plugins="[<target_option>, <target_option>, ...]"
PANTS_MYPY_SOURCE_PLUGINS
source_plugins
[]
An optional list of `python_library` target addresses to load first-party plugins.
You must also set plugins = path.to.module
in your mypy.ini
, and set the [mypy].config
option in your pants.toml
.
To instead load third-party plugins, set the option [mypy].extra_requirements
and set the plugins
option in mypy.ini
.
Deprecated options
None
Updated 2 months ago