-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(zine): add superhtml and ziggy support (#531)
* feat(superhtml): support SuperHTML formatter Add support for SuperHTML formatter. * feat(ziggy): support Ziggy formatter Add support for Ziggy and Ziggy-Schema formatting. * doc: add trailing period to superhtml --------- Co-authored-by: Steven Arcangeli <[email protected]>
- Loading branch information
1 parent
e82b7b1
commit 392fc98
Showing
5 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
---@type conform.FileFormatterConfig | ||
return { | ||
meta = { | ||
url = "https://github.com/kristoff-it/superhtml", | ||
description = "HTML Language Server and Templating Language Library.", | ||
}, | ||
command = "superhtml", | ||
args = { "fmt", "--stdin" }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
---@type conform.FileFormatterConfig | ||
return { | ||
meta = { | ||
url = "https://github.com/kristoff-it/ziggy", | ||
description = "A data serialization language for expressing clear API messages, config files, etc.", | ||
}, | ||
command = "ziggy", | ||
args = { "fmt", "--stdin" }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
---@type conform.FileFormatterConfig | ||
return { | ||
meta = { | ||
url = "https://github.com/kristoff-it/ziggy", | ||
description = "A data serialization language for expressing clear API messages, config files, etc.", | ||
}, | ||
command = "ziggy", | ||
args = { "fmt", "--stdin-schema" }, | ||
} |