From 007749aedd1812d5c9a28257c8cf2bf588c22f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 23 May 2024 20:08:55 +0200 Subject: [PATCH] Disable flake8 in helix --- helix/languages.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helix/languages.toml b/helix/languages.toml index 1f38032..bac65e3 100644 --- a/helix/languages.toml +++ b/helix/languages.toml @@ -1,7 +1,11 @@ + [[language]] name = "bash" indent = { unit = " " , tab-width = 4 } +[language-server.pylsp.config.pylsp.plugins] +flake8 = {enabled = false} + [[language]] name = "python" indent = { unit = " " , tab-width = 4 }