aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/biome.lua
blob: 1d37c1c2938789396b27c6dd538b35a69259b67a (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 = { "format", "--stdin-file-path", "$FILENAME" },
  cwd = util.root_file({
    "biome.json",
  }),
}