summaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/stylelint.lua
blob: 3d8361d21c4a590f926843a7b8903e86416b1dc7 (plain)
1
2
3
4
5
6
7
8
9
10
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/stylelint/stylelint",
    description = "A mighty CSS linter that helps you avoid errors and enforce conventions.",
  },
  command = "stylelint",
  args = { "--stdin", "--fix" },
  stdin = true,
}