File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -366,6 +366,7 @@ You can view this list in vim with `:help conform-formatters`
366366- [ ruff_format] ( https://docs.astral.sh/ruff/ ) - An extremely fast Python linter, written in Rust. Formatter subcommand.
367367- [ ruff_organize_imports] ( https://docs.astral.sh/ruff/ ) - An extremely fast Python linter, written in Rust. Organize imports.
368368- [ rufo] ( https://github.com/ruby-formatter/rufo ) - Rufo is an opinionated ruby formatter.
369+ - [ rumdl] ( https://github.com/rvben/rumdl ) - Markdown Linter and Formatter written in Rust.
369370- [ runic] ( https://github.com/fredrikekre/Runic.jl ) - Julia code formatter.
370371- [ rustfmt] ( https://github.com/rust-lang/rustfmt ) - A tool for formatting rust code according to style guidelines.
371372- [ rustywind] ( https://github.com/avencera/rustywind ) - A tool for formatting Tailwind CSS classes.
Original file line number Diff line number Diff line change @@ -517,6 +517,7 @@ FORMATTERS *conform-formatter
517517`ruff_organize_imports` - An extremely fast Python linter, written in Rust.
518518 Organize imports.
519519`rufo` - Rufo is an opinionated ruby formatter.
520+ `rumdl` - Markdown Linter and Formatter written in Rust.
520521`runic` - Julia code formatter.
521522`rustfmt` - A tool for formatting rust code according to style guidelines.
522523`rustywind` - A tool for formatting Tailwind CSS classes.
Original file line number Diff line number Diff line change 1+ --- @type conform.FileFormatterConfig
2+ return {
3+ meta = {
4+ url = " https://github.com/rvben/rumdl" ,
5+ description = " Markdown Linter and Formatter written in Rust." ,
6+ },
7+ command = " rumdl" ,
8+ args = { " fmt" , " -" },
9+ stdin = true ,
10+ }
You can’t perform that action at this time.
0 commit comments