aboutsummaryrefslogtreecommitdiff
path: root/challenge-286/ppentchev/python/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-286/ppentchev/python/pyproject.toml')
-rw-r--r--challenge-286/ppentchev/python/pyproject.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/challenge-286/ppentchev/python/pyproject.toml b/challenge-286/ppentchev/python/pyproject.toml
new file mode 100644
index 0000000000..1b9e32ae87
--- /dev/null
+++ b/challenge-286/ppentchev/python/pyproject.toml
@@ -0,0 +1,19 @@
+# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
+# SPDX-License-Identifier: BSD-2-Clause
+
+[tool.mypy]
+strict = true
+
+[tool.ruff]
+extend = "ruff-base.toml"
+output-format = "concise"
+preview = true
+
+[tool.ruff.lint]
+select = ["ALL"]
+
+[tool.test-stages]
+stages = [
+ "@check and @quick and not @manual",
+ "@check and not @manual",
+]