diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index d20c0161..e53b2193 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,4 +1,16 @@ -# Changelog +# Changes -* [0.1.1](changes_0.1.1.md) -* [0.1.0](changes_0.1.0.md) \ No newline at end of file +* [unreleased](unreleased.md) +* [0.2.0](changes_0.2.0.md) +* [0.1.0](changes_0.1.0.md) + + +```{toctree} +--- +hidden: +--- +unreleased +changes_0.2.0 +changes_0.1.0 + +``` diff --git a/pyproject.toml b/pyproject.toml index 9af61693..44ce7601 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,3 +73,20 @@ ignore_errors = true [tool.pylint.master] fail-under = 6.0 + + + +[tool.black] +line-length = 88 +verbose = false +include = "\\.pyi?$" + + +[tool.isort] +profile = "black" +force_grid_wrap = 2 + + +[tool.pylint.format] +max-line-length = 88 +max-module-lines = 800