Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: change markdown extension from MD to md #34

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.