From 3a382cb3f39edbe538736af031a680f8c692321a Mon Sep 17 00:00:00 2001 From: Bnyro Date: Thu, 11 Jun 2026 11:01:00 +0200 Subject: [PATCH] [chore] helix config: enable pyling and use black via pylsp --- .helix/languages.toml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.helix/languages.toml b/.helix/languages.toml index 34b7be5cb..5d83dcf32 100644 --- a/.helix/languages.toml +++ b/.helix/languages.toml @@ -1,10 +1,11 @@ [[language]] name = "python" language-servers = ["basedpyright", "pylsp"] -formatter = { command = "black", args = [ - "--target-version", - "py311", - "--line-length", - "120", - "--skip-string-normalization", -] } +auto-format = true + +[language-server.pylsp.config.pylsp] +plugins.pylint.enabled = true +plugins.isort.enabled = true +plugins.black.enabled = true +plugins.black.skip_string_normalization = true +plugins.black.line_length = 120