From 3cd44640dadbee1b0ce8c47722e7908e62bb2db7 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Sat, 4 Oct 2025 19:20:31 -0400 Subject: [PATCH] update: language corrections in mason config remove Docker and systemd specific tooling add PHP and SQL tooling --- .config/nvim/lua/plugins/mason.lua | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.config/nvim/lua/plugins/mason.lua b/.config/nvim/lua/plugins/mason.lua index 8c3adbd..9e131c1 100644 --- a/.config/nvim/lua/plugins/mason.lua +++ b/.config/nvim/lua/plugins/mason.lua @@ -47,15 +47,13 @@ return { 'stylelint', 'htmlhint', 'prettier', + 'trivy', -- PHP + 'phpcbf', -- PHP -- YAML / Ansible 'yamllint', 'ansible-lint', - -- Docker - 'hadolint', - 'trivy', - -- JSON / Config 'jsonlint', 'jq', @@ -68,11 +66,11 @@ return { -- Lua 'stylua', - -- commit messages + -- Git commit messages 'gitlint', - -- systemd units - 'systemdlint', + -- SQL + 'sqlfluff', }, }) end,