Skip to content

Commit

Permalink
chore(tooling): Normalize TOML in crate manifest
Browse files Browse the repository at this point in the history
Because the release tooling is going to clobber it anyway and we don't
want that in the release commit.
  • Loading branch information
alerque committed Aug 29, 2024
1 parent 5bf9af4 commit 8e42687
Showing 1 changed file with 18 additions and 22 deletions.
40 changes: 18 additions & 22 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ repository = "https://github.com/sile-typesetter/casile"
license = "AGPL-3.0"
build = "build-aux/build.rs"

[package.metadata.typos.default]
locale = "en-us"
extend-ignore-identifiers-re = [ "Heros", "[Cc]alibre" ]
extend-words = { }

[package.metadata.typos.files]
ignore-hidden = false
extend-exclude = [
"/.git",
"CHANGELOG.md",
"build-aux/ax*",
"lua-libraries/*",
"names.*.txt",
"rules/en.mk",
"rules/tr.mk",
"upgrade*.sed"
]

[dependencies]
console = "0.15"
fluent = "0.16"
Expand Down Expand Up @@ -77,25 +95,3 @@ predicates = "3.1"

[profile.release]
lto = true

[package.metadata.typos.default]
locale = "en-us"
extend-ignore-identifiers-re = [
"Heros",
"[Cc]alibre",
]

[package.metadata.typos.default.extend-words]

[package.metadata.typos.files]
ignore-hidden = false
extend-exclude = [
"/.git",
"CHANGELOG.md",
"build-aux/ax*",
"lua-libraries/*",
"names.*.txt",
"rules/en.mk",
"rules/tr.mk",
"upgrade*.sed",
]

0 comments on commit 8e42687

Please sign in to comment.