From b5d2d70cbc815aa343deb2402a4ec3f647bb23ab Mon Sep 17 00:00:00 2001 From: Soispha Date: Sun, 17 Sep 2023 16:19:08 +0200 Subject: fix(hm/conf/nvim/plgs/nvim-lint): Remove shellcheck, as bash ls exits The Bash language server already runs shellcheck, thus making the explicit call here useless. --- hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hm') diff --git a/hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua b/hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua index 582da638..c6cd1420 100644 --- a/hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua +++ b/hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua @@ -3,11 +3,11 @@ require("lint").linters_by_ft = { markdown = {}; -- tex = {'chktex'}, -- maybe add some text linters ? - -- shell - sh = { "shellcheck"; }; - bash = { "shellcheck"; }; - zsh = { "shellcheck"; }; - dash = { "shellcheck"; }; + -- shell (already covered by the bash language sever) + -- sh = { "shellcheck"; }; + -- bash = { "shellcheck"; }; + -- zsh = { "shellcheck"; }; + -- dash = { "shellcheck"; }; yaml = { "yamllint"; }; nix = { "nix"; "statix"; }; -- cgit 1.4.1