aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/biome.lua
blob: 3fb0c088c88a4d9f91037bca1bf33681f5d57051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@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 = "biome",

  -- pending this bug, do not use stdin: https://github.com/biomejs/biome/issues/455
  stdin = false,
  args = { "format", "--write", "$FILENAME" },
  -- stdin = true,
  -- args = { "format", "--stdin-file-path", "$FILENAME" },
}