File size: 752 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# https://github.com/crate-ci/typos
# cargo install typos-cli
# typos
[default]
check-filename = false
extend-ignore-identifiers-re = ["SEPARATORs*", "IIFEs*"]
[default.extend-words]
rto = "rto"
wdth = "wdth"
[type.rust]
check-file = true
[type.toml]
check-file = false
[type.ts]
check-file = false
[type.js]
check-file = false
[type.css]
check-file = false
[type.sass]
check-file = false
[type.svg]
check-file = false
[type.json]
check-file = false
[type.md]
check-file = false
[type.minified]
check-file = false
[type.txt]
check-file = false
[type.sourcemap]
extend-glob = ["*.js.map"]
check-file = false
[type.snapshot]
extend-glob = ["*.snapshot"]
check-file = false
[type.gitignore]
extend-glob = ["*gitignore"]
check-file = false
|