Skip to content

Commit

Permalink
feat(haskell): support stylish-haskell (#435)
Browse files Browse the repository at this point in the history
* feat: add support for stylish-haskell

* refactor: use stdin instead of file
  • Loading branch information
hougesen authored Jun 1, 2024
1 parent f3b930d commit dc612fb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lua/conform/formatters/stylish-haskell.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---@type conform.FileFormatterConfig
return {
meta = {
url = "https://github.com/haskell/stylish-haskell",
description = "Haskell code prettifier.",
},
command = "stylish-haskell",
args = {},
stdin = true,
}

0 comments on commit dc612fb

Please sign in to comment.