diff options
author | Soispha <soispha@vhack.eu> | 2023-09-17 16:19:08 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-09-17 16:19:08 +0200 |
commit | b5d2d70cbc815aa343deb2402a4ec3f647bb23ab (patch) | |
tree | 74545db0bb07937f9019dceea27582bbf55f8de4 | |
parent | build(treewide): Update (diff) | |
download | nixos-config-b5d2d70cbc815aa343deb2402a4ec3f647bb23ab.tar.gz nixos-config-b5d2d70cbc815aa343deb2402a4ec3f647bb23ab.zip |
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.
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/nvim/plgs/nvim-lint/lua/nvim-lint.lua | 10 |
1 files changed, 5 insertions, 5 deletions
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"; }; |