summaryrefslogtreecommitdiff
path: root/fnl/config/lsp/mason-null-ls.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/config/lsp/mason-null-ls.fnl')
-rw-r--r--fnl/config/lsp/mason-null-ls.fnl26
1 files changed, 26 insertions, 0 deletions
diff --git a/fnl/config/lsp/mason-null-ls.fnl b/fnl/config/lsp/mason-null-ls.fnl
new file mode 100644
index 0000000..42b3715
--- /dev/null
+++ b/fnl/config/lsp/mason-null-ls.fnl
@@ -0,0 +1,26 @@
+;; Ensure that tools needed for null-ls are installed.
+(module config.mason-null-ls {autoload {: util}})
+
+(def- opts {:ensure_installed [:flake8
+ :golangci-lint
+ :cpplint
+ :gitlint
+ :jsonlint
+ :yamllint
+ :black
+ :fnlfmt
+ :fourmolu
+ :gofmt
+ :goimports
+ :prettier
+ :rustfmt
+ :stylua
+ :shellcheck
+ :sqlfluff
+ :hadolint
+ :terraform-fmt
+ :shfmt]
+ :auto_update true
+ :automatic_installation true})
+
+(util.use-config :mason-null-ls opts)