mypy
The MyPy Python type checker (http://mypy-lang.org/).
Backend: ``
Config section: [mypy]
Basic options
args
--mypy-args="[<shell_str>, <shell_str>, ...]"
PANTS_MYPY_ARGS
[mypy]
args = [
<shell_str>,
<shell_str>,
...,
]
[]
Arguments to pass directly to mypy, e.g. --mypy-args="--python-version 3.7 --disallow-any-expr"
skip
--[no-]mypy-skip
PANTS_MYPY_SKIP
[mypy]
skip = <bool>
False
Don't use MyPy when running /home/josh/work/scie-pants/dist/pants lint
.
Advanced options
config
--mypy-config=<file_option>
PANTS_MYPY_CONFIG
[mypy]
config = <file_option>
None
Path to mypy.ini
or alternative MyPy config file
entry_point
--mypy-entry-point=<str>
PANTS_MYPY_ENTRY_POINT
[mypy]
entry_point = <str>
mypy
The main module for the tool. Usually, you will not want to change this from the default.
extra_requirements
--mypy-extra-requirements="['<str>', '<str>', ...]"
PANTS_MYPY_EXTRA_REQUIREMENTS
[mypy]
extra_requirements = [
'<str>',
'<str>',
...,
]
[]
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.
interpreter_constraints
--mypy-interpreter-constraints="['<str>', '<str>', ...]"
PANTS_MYPY_INTERPRETER_CONSTRAINTS
[mypy]
interpreter_constraints = [
'<str>',
'<str>',
...,
]
[ "CPython>=3.6" ]
Python interpreter constraints for this tool.
source_plugins
--mypy-source-plugins="[<target_option>, <target_option>, ...]"
PANTS_MYPY_SOURCE_PLUGINS
[mypy]
source_plugins = [
<target_option>,
<target_option>,
...,
]
[]
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
.
version
--mypy-version=<str>
PANTS_MYPY_VERSION
[mypy]
version = <str>
mypy==0.782
Requirement string for the tool.
Deprecated options
None
Related subsystems
None