aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/biome-check.lua
blob: 7115903072e2ea954e422b82021db5e7b04ab37d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local util = require("conform.util")
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/biomejs/biome",
    description = "A toolchain for web projects, aimed to provide functionalities to maintain them.",
  },
  command = util.from_node_modules("biome"),
  stdin = true,
  args = { "check", "--apply", "--stdin-file-path", "$FILENAME" },
  cwd = util.root_file({
    "biome.json",
  }),
}