Skip to content

Commit

Permalink
chore: change markdown extension from MD to md (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulic-youthlic authored Mar 5, 2025
1 parent 0f28e64 commit e4e58bc
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .justfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ justFmt:
just --unstable --fmt

mdFmtCheck:
git ls-files | grep -E '^.*\.(md|MD)$' | xargs deno fmt --check --ext md
git ls-files | grep -E '^.*\.md$' | xargs deno fmt --check --ext md

mdFmt:
git ls-files | grep -E '^.*\.(md|MD)$' | xargs deno fmt --ext md
git ls-files | grep -E '^.*\.md$' | xargs deno fmt --ext md

ymlFmtCheck:
git ls-files | grep -E '^.*\.yml$' | xargs deno fmt --check --ext yml
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = ["mania", "mania-macros", "mania-codec", "examples"]
version = "0.0.1"
edition = "2024"
license-file = "LICENCE"
readme = "README.md"

[workspace.dependencies]
md-5 = "0.11.0-pre.4"
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
".github"
".gitignore"
"rust-toolchain.toml"
"README.MD"
"README.md"
"flake.nix"
"flake.lock"
"target"
Expand Down Expand Up @@ -140,7 +140,7 @@
just --unstable --fmt --check
# markdown
echo '==> markdown format check'
find . -type f -regextype egrep -regex '^.*\.(md|MD)$' -exec deno fmt --check --ext md {} +
find . -type f -regextype egrep -regex '^.*\.md$' -exec deno fmt --check --ext md {} +
# toml
echo '==> toml format check'
find . -type f -regextype egrep -regex '^.*\.toml$' -exec taplo format --check {} +
Expand Down
1 change: 1 addition & 0 deletions mania-codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "mania-codec"
version.workspace = true
edition.workspace = true
license-file.workspace = true
readme = "README.md"

[dependencies]
num-traits = "0.2.19"
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit e4e58bc

Please sign in to comment.