From ba376466fff42cbdc839e28641604dd4c82ceb99 Mon Sep 17 00:00:00 2001 From: Mark Joshwel Date: Thu, 31 Aug 2023 20:28:44 +0000 Subject: [PATCH] pyproject: add black and isort tooling configs --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 3534302..d52accf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,13 @@ isort = "^5.12.0" surplus = 'surplus:cli' "s+" = 'surplus:cli' +[tool.black] +line-length = 90 + +[tool.isort] +line_length = 90 +profile = "black" + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"