flowmark 0.2.6

A Markdown auto-formatter for clean diffs and semantic line breaks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Makefile for local development workflows.

.DEFAULT_GOAL := default

.PHONY: default format format-rust format-docs

# Run both Rust code formatting and markdown formatting.
default: format

format: format-rust format-docs

format-rust:
	cargo fmt --all

# Use the Rust CLI in this repo to format all markdown recursively.
format-docs:
	cargo run --quiet --bin flowmark -- --auto .