aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/rubocop.lua
blob: 5e2a1433cbfb7d1c1706dd692e69a48c4462a9ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---@type conform.FileFormatterConfig
return {
  meta = {
    url = "https://github.com/rubocop/rubocop",
    description = "Ruby static code analyzer and formatter, based on the community Ruby style guide.",
  },
  command = "rubocop",
  args = {
    "-a",
    "-f",
    "quiet",
    "--stderr",
    "--stdin",
    "$FILENAME",
  },
}