summaryrefslogtreecommitdiff
path: root/fnl/config/lsp/mason-null-ls.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-12-22 22:15:48 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-12-22 22:15:48 +0100
commit3c83308ebeedf5ee6634079a029861e151b97426 (patch)
treefc4435ff0ffa525656ad4959fa014e9b77110a76 /fnl/config/lsp/mason-null-ls.fnl
parentcb76756457ab8af4b048d342cb148ac05a386042 (diff)
Replace black, flake8, and pyright with ruff
Diffstat (limited to 'fnl/config/lsp/mason-null-ls.fnl')
-rw-r--r--fnl/config/lsp/mason-null-ls.fnl5
1 files changed, 1 insertions, 4 deletions
diff --git a/fnl/config/lsp/mason-null-ls.fnl b/fnl/config/lsp/mason-null-ls.fnl
index f4c1f6e..5200cea 100644
--- a/fnl/config/lsp/mason-null-ls.fnl
+++ b/fnl/config/lsp/mason-null-ls.fnl
@@ -1,9 +1,7 @@
;; Ensure that tools needed for null-ls are installed.
(module config.mason-null-ls {autoload {util config.util}})
-(def- opts {:ensure_installed [:black
- :cpplint
- :flake8
+(def- opts {:ensure_installed [:cpplint
:fnlfmt
:gitlint
:hadolint
@@ -16,7 +14,6 @@
:stylua
:terraform-fmt
:yamllint]
-
:auto_update true
:automatic_installation true})