feat(lint.lua): Disable unused linters, define tofu
This commit is contained in:
parent
5bdde24dfb
commit
cad22c27d3
|
@ -6,7 +6,13 @@ return {
|
||||||
config = function()
|
config = function()
|
||||||
local lint = require 'lint'
|
local lint = require 'lint'
|
||||||
lint.linters_by_ft = {
|
lint.linters_by_ft = {
|
||||||
|
clojure = { nil },
|
||||||
|
inko = { nil },
|
||||||
|
janet = { nil },
|
||||||
markdown = { 'markdownlint' },
|
markdown = { 'markdownlint' },
|
||||||
|
terraform = { 'tflint'},
|
||||||
|
tofu = { 'tflint' },
|
||||||
|
text = { 'vale' },
|
||||||
}
|
}
|
||||||
|
|
||||||
-- To allow other plugins to add linters to require('lint').linters_by_ft,
|
-- To allow other plugins to add linters to require('lint').linters_by_ft,
|
||||||
|
|
Loading…
Reference in New Issue