From 7eea051d3a3c77ad8c201857ddef92189c4a9138 Mon Sep 17 00:00:00 2001 From: OMGeeky Date: Sat, 7 Jun 2025 13:24:35 +0200 Subject: [PATCH] feat: add configuration for Black code formatter in config.toml --- .junie/config.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .junie/config.toml diff --git a/.junie/config.toml b/.junie/config.toml new file mode 100644 index 0000000..c728bf0 --- /dev/null +++ b/.junie/config.toml @@ -0,0 +1,21 @@ +[formatting] +tool = "black" +enabled = true + +[formatting.black] +line-length = 88 +target-version = ["py312"] +include = "\.pyi?$" +exclude = """ +/( + \.git + | \.hg + | \.mypy_cache + | \.tox + | \.venv + | _build + | buck-out + | build + | dist +)/ +""" \ No newline at end of file