From acd85539acf97b09149d47d36a7152c2a2a11e96 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 20 Dec 2025 22:59:11 +0000 Subject: [PATCH] mdsh: run on all Markdown files Change the includes pattern from README.md to *.md to format all Markdown files in the project. --- examples/formatter-mdsh.toml | 2 +- programs/mdsh.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/formatter-mdsh.toml b/examples/formatter-mdsh.toml index d618bc53..e23cc528 100644 --- a/examples/formatter-mdsh.toml +++ b/examples/formatter-mdsh.toml @@ -2,5 +2,5 @@ [formatter.mdsh] command = "mdsh" excludes = [] -includes = ["README.md"] +includes = ["*.md"] options = ["--inputs"] diff --git a/programs/mdsh.nix b/programs/mdsh.nix index 4a8967b2..2ca1c612 100644 --- a/programs/mdsh.nix +++ b/programs/mdsh.nix @@ -6,7 +6,7 @@ (mkFormatterModule { name = "mdsh"; args = [ "--inputs" ]; - includes = [ "README.md" ]; + includes = [ "*.md" ]; }) ]; }