Coverage for important strings
Coverage for important strings
Posted Oct 30, 2024 8:56 UTC (Wed) by taladar (subscriber, #68407)In reply to: Coverage for important strings by tialaramex
Parent article: A new approach to validating test suites
> for example it's fine if my panic spells the word "available" wrong
There is a tool called https://crates.io/crates/typos-cli that you can put into your pre-commit hook to avoid committing mistakes like that. The main issue with it is that it only supports English so if you have other languages in your source code you might get false positives (but there are ways to add to the list of words accepted or to exclude files).
