Skip to content

Commit acd8553

Browse files
claudeEnzime
authored andcommitted
mdsh: run on all Markdown files
Change the includes pattern from README.md to *.md to format all Markdown files in the project.
1 parent 42d96e7 commit acd8553

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/formatter-mdsh.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
[formatter.mdsh]
33
command = "mdsh"
44
excludes = []
5-
includes = ["README.md"]
5+
includes = ["*.md"]
66
options = ["--inputs"]

programs/mdsh.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(mkFormatterModule {
77
name = "mdsh";
88
args = [ "--inputs" ];
9-
includes = [ "README.md" ];
9+
includes = [ "*.md" ];
1010
})
1111
];
1212
}

0 commit comments

Comments
 (0)