Skip to content

Commit b3975fd

Browse files
nvim: prevent installing unknown linter
1 parent 413ece8 commit b3975fd

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.config/cvim/settings/nvim_mason_nvim_lint.lua

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ local function config()
1313
'shellharden',
1414
'yamllint',
1515
},
16-
-- avoid trying to install an unknown linter
17-
ignore_install = {}
16+
-- Avoid trying to install an unknown linter
17+
ignore_install = {
18+
'ruby',
19+
'clj-kondo',
20+
'inko',
21+
'janet'
22+
}
1823
})
1924
end
2025

0 commit comments

Comments
 (0)