black
The Black Python code formatter (https://black.readthedocs.io/).
Backend: ``
Config section: [black]
Basic options
args
--black-args="[<shell_str>, <shell_str>, ...]"
PANTS_BLACK_ARGS
[black]
args = [
<shell_str>,
<shell_str>,
...,
]
[]
Arguments to pass directly to Black, e.g. --black-args="--target-version=py37 --quiet"
skip
--[no-]black-skip
PANTS_BLACK_SKIP
[black]
skip = <bool>
False
Don't use Black when running /home/josh/work/scie-pants/dist/pants fmt
and /home/josh/work/scie-pants/dist/pants lint
Advanced options
config
--black-config=<file_option>
PANTS_BLACK_CONFIG
[black]
config = <file_option>
None
Path to Black's pyproject.toml config file
console_script
--black-console-script=<str>
PANTS_BLACK_CONSOLE_SCRIPT
[black]
console_script = <str>
black
The console script for the tool. Using this option is generally preferable to (and mutually exclusive with) specifying an --entry-point since console script names have a higher expectation of staying stable across releases of the tool. Usually, you will not want to change this from the default.
entry_point
--black-entry-point=<str>
PANTS_BLACK_ENTRY_POINT
[black]
entry_point = <str>
None
The entry point for the tool. Generally you only want to use this option if the tool does not offer a --console-script (which this option is mutually exclusive with). Usually, you will not want to change this from the default.
extra_requirements
--black-extra-requirements="['<str>', '<str>', ...]"
PANTS_BLACK_EXTRA_REQUIREMENTS
[black]
extra_requirements = [
'<str>',
'<str>',
...,
]
[ "setuptools" ]
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
--black-interpreter-constraints="['<str>', '<str>', ...]"
PANTS_BLACK_INTERPRETER_CONSTRAINTS
[black]
interpreter_constraints = [
'<str>',
'<str>',
...,
]
[ "CPython>=3.6" ]
Python interpreter constraints for this tool.
version
--black-version=<str>
PANTS_BLACK_VERSION
[black]
version = <str>
black==20.8b1
Requirement string for the tool.
Deprecated options
None
Related subsystems
None