mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
My understanding is that pyproject.toml is the "new" way to configure Python tools. Although setup.cfg can't yet be removed (flake8 has some issue with pyproject.toml), we can move the isort config here. Approved-By: Simon Marchi <simon.marchi@efficios.com>
9 lines
116 B
TOML
9 lines
116 B
TOML
[tool.black]
|
|
include = "\\.py(\\.in)?$"
|
|
|
|
[tool.pyright]
|
|
typeCheckingMode = "strict"
|
|
|
|
[tool.isort]
|
|
profile = "black"
|