mirror of
https://github.com/axodotdev/cargo-dist.git
synced 2025-02-17 01:02:02 +08:00
14 lines
396 B
TOML
14 lines
396 B
TOML
# https://github.com/crate-ci/typos # LSP: https://github.com/tekumara/typos-lsp
|
|
# install: cargo install typos-cli
|
|
# run: typos
|
|
[default]
|
|
extend-ignore-identifiers-re = [
|
|
# Allow all-caps words that are 2-letters or more and ends with 's'
|
|
"[A-Z]{2,}s",
|
|
]
|
|
# Ignore CLIENT_ID=<random letters>
|
|
extend-ignore-re = ["CLIENT_ID=[A-Za-z0-9_-]+"]
|
|
|
|
[default.extend-identifiers]
|
|
PnP = "PnP"
|