diff --git a/source/python/black.md b/source/python/black.md new file mode 100644 index 0000000..4fc75e6 --- /dev/null +++ b/source/python/black.md @@ -0,0 +1,16 @@ +# Black + +## Links +- [Black Doc](https://black.readthedocs.io/) + +## Configuration +Black can be configured in `pyproject.toml`. + +Example config: + +:::{code} python +:filename: pyproject.toml +[tool.black] +line-length = 99 +target-version = ["py310"] +:::