Skip to content

Commit cad22c2

Browse files
committed
feat(lint.lua): Disable unused linters, define tofu
1 parent 5bdde24 commit cad22c2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lua/kickstart/plugins/lint.lua

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ return {
66
config = function()
77
local lint = require 'lint'
88
lint.linters_by_ft = {
9+
clojure = { nil },
10+
inko = { nil },
11+
janet = { nil },
912
markdown = { 'markdownlint' },
13+
terraform = { 'tflint'},
14+
tofu = { 'tflint' },
15+
text = { 'vale' },
1016
}
1117

1218
-- To allow other plugins to add linters to require('lint').linters_by_ft,

0 commit comments

Comments
 (0)