From 1e0da31c99b5751cdc26357001dcc98cd8798230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Mon, 3 Jan 2022 19:29:00 +0100 Subject: [PATCH] Move Black line length to pyproject.toml --- .vscode/settings.json | 6 ------ pyproject.toml | 3 +++ 2 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 3c5e145..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "python.formatting.provider": "black", - "python.formatting.blackArgs": [ - "--line-length=119" - ] -} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 82f7a0e..15a439b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,3 +29,6 @@ bandit = "^1.7.0" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" + +[tool.black] +line-length = 119 \ No newline at end of file