Skip to content

Commit b4dfddc

Browse files
authored
Merge branch 'stevearc:master' into fix-mbake
2 parents d812d45 + 02736cf commit b4dfddc

4 files changed

Lines changed: 12 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@ You can view this list in vim with `:help conform-formatters`
349349
- [python-ly](https://github.com/frescobaldi/python-ly) - A Python package and commandline tool to manipulate LilyPond files.
350350
- [pyupgrade](https://github.com/asottile/pyupgrade) - A tool to automatically upgrade syntax for newer versions of Python.
351351
- [qmlformat](https://doc.qt.io/qt-6//qtqml-tooling-qmlformat.html) - A tool that automatically formats QML files.
352+
- [racketfmt](https://docs.racket-lang.org/fmt) - Racket language formatter.
352353
- [reformat-gherkin](https://github.com/ducminh-phan/reformat-gherkin) - Formatter for Gherkin language.
353354
- [reorder-python-imports](https://github.com/asottile/reorder-python-imports) - Rewrites source to reorder python imports
354355
- [rescript-format](https://rescript-lang.org/) - The built-in ReScript formatter.

doc/conform.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,7 @@ FORMATTERS *conform-formatter
494494
`pyupgrade` - A tool to automatically upgrade syntax for newer versions of
495495
Python.
496496
`qmlformat` - A tool that automatically formats QML files.
497+
`racketfmt` - Racket language formatter.
497498
`reformat-gherkin` - Formatter for Gherkin language.
498499
`reorder-python-imports` - Rewrites source to reorder python imports
499500
`rescript-format` - The built-in ReScript formatter.

lua/conform/formatters/bake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ return {
44
url = "https://github.com/EbodShojaei/bake",
55
description = "A Makefile formatter and linter.",
66
},
7-
command = "bake",
7+
command = "mbake",
88
args = { "format", "$FILENAME" },
99
stdin = false,
1010
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---@type conform.FileFormatterConfig
2+
return {
3+
meta = {
4+
url = "https://docs.racket-lang.org/fmt",
5+
description = "Racket language formatter.",
6+
},
7+
command = "raco",
8+
args = { "fmt" },
9+
}

0 commit comments

Comments
 (0)