typos/docs/comparison.md

39 lines
3.2 KiB
Markdown
Raw Normal View History

# Related Spell Checkers
2019-10-25 08:15:40 -04:00
2022-02-16 13:46:16 -05:00
| | typos | [client9/misspell][misspell-go] | [codespell] | [scspell3k] | [topy] |
|----------------|-----------------------|---------------------------------|-------------|-------------|------------|
| Runtime | \- | \- | Python | Python | Python |
| [Approach](design.md) | Correction | Correction | Correction | Dictionary | Dictionary |
| Custom Dict | Yes | ? | Yes | Yes | Yes |
| Per-Lang Dict | Yes | ? | No | Yes | No |
| CamelCase | Yes | ? | No | Yes | No |
| snake_case | Yes | ? | No | Yes | No |
| Ignore email | Yes | yes | No | No | No |
| Ignore url | Yes | yes | No | No | No |
| Ignore Hex | Yes | ? | No | Yes | No |
| Ignore UUID | Yes | ? | No | No | No |
| Ignore base64 | Yes | ? | No | No | No |
| Ignore SHAs | Yes | ? | No | No | No |
2023-06-22 16:09:53 -04:00
| C-Escapes | Yes ([#20][def-3]) | ? | No | Yes | No |
2022-02-16 13:46:16 -05:00
| Encodings | UTF-8 / UTF-16 | ? | Auto | Auto | UTF-8 |
| Whole-project | Yes | Yes | Yes | No | Yes |
| Ignores hidden | Yes | ? | Yes | No | Yes |
| Respect gitignore | Yes | ? | No | No | No |
| Checks filenames | Yes | ? | Yes | No | No |
| Status via exit code | Yes | Yes | Yes | Yes | No |
| API | Rust / [JSON Lines] | ? | Python | None | Python |
| License | MIT or Apache | MIT | GPLv2 | GPLv2 | MIT |
See also [benchmarks](../benchsuite/runs).
[JSON Lines]: http://jsonlines.org/
[scspell3k]: https://github.com/myint/scspell
[misspell-go]: https://github.com/client9/misspell
2019-07-13 20:45:36 -04:00
[codespell]: https://github.com/codespell-project/codespell
2022-02-16 13:46:16 -05:00
[topy]: https://github.com/intgr/topy
2019-10-25 10:06:05 -04:00
[def-9]: https://github.com/crate-ci/typos/issues/9
[def-14]: https://github.com/crate-ci/typos/issues/14
[def-17]: https://github.com/crate-ci/typos/issues/17
[def-18]: https://github.com/crate-ci/typos/issues/18
[def-3]: https://github.com/crate-ci/typos/issues/3