From e1f3911046bc59bbf90a5f428dd78c8f632e7a0c Mon Sep 17 00:00:00 2001 From: Wouter de Bruijn Date: Tue, 17 Jun 2025 10:32:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Added=20example=20pyproject=20co?= =?UTF-8?q?nfiguration=20including=20linter=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..51f9b02 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +[tool.ruff] +line-length = 256 +target-version = "py38" + +[tool.ruff.lint] +select = ["E", "W", "F", "N", "T", "I"] + +[tool.mypy] +python_version = "3.8" +warn_return_any = true +warn_unused_configs = true +ignore_missing_imports = true +strict = false