mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-25 02:20:58 -05:00
fix(cli): Allow ot and stap in sh
This commit is contained in:
parent
e5e8f25c8e
commit
d3e48b202b
1 changed files with 10 additions and 0 deletions
|
@ -45,6 +45,16 @@ pub const TYPE_SPECIFIC_DICTS: &[(&str, StaticDictConfig)] = &[
|
|||
],
|
||||
},
|
||||
),
|
||||
(
|
||||
"sh",
|
||||
StaticDictConfig {
|
||||
ignore_idents: &[
|
||||
"ot", // the test command from GNU coreutils supports an -ot argument (see https://www.gnu.org/software/coreutils/manual/html_node/File-characteristic-tests.html)
|
||||
"stap", // command from SystemTap (see https://sourceware.org/systemtap/man/stap.1.html)
|
||||
],
|
||||
ignore_words: &[],
|
||||
},
|
||||
),
|
||||
(
|
||||
"vim",
|
||||
StaticDictConfig {
|
||||
|
|
Loading…
Reference in a new issue