feat: add biome linter

This commit is contained in:
Adrien Waksberg 2025-04-10 16:42:16 +02:00
parent ab8fab8099
commit 203f1d5969
2 changed files with 5 additions and 2 deletions
lua
configs
plugins

View file

@ -1,8 +1,10 @@
local options = { local options = {
formatters_by_ft = { formatters_by_ft = {
bash = { "shfmt" }, bash = { "shfmt" },
css = { "prettier" }, css = { "biome" },
json = { "prettier" }, json = { "biome" },
javascript = { "biome" },
typpescript = { "biome " },
go = { "goimports", "gofmt" }, go = { "goimports", "gofmt" },
html = { "prettier" }, html = { "prettier" },
lua = { "stylua" }, lua = { "stylua" },

View file

@ -35,6 +35,7 @@ return {
"markdownlint", "markdownlint",
"terraformls", "terraformls",
"tflint", "tflint",
"biome",
}, },
}, },
}, },