typos/docs/comparison.md

34 lines
3 KiB
Markdown
Raw Normal View History

# Related Spell Checkers
2019-10-25 08:15:40 -04:00
2019-07-13 20:45:36 -04:00
| | typos | [bloom42/misspell][misspell-rs] | [client9/misspell][misspell-go] | [codespell] | [scspell3k] |
|----------------|-----------------------|---------------------------------|---------------------------------|-------------|-------------|
2019-10-25 10:06:05 -04:00
| Runtime | \- | \- | \- | Python | Python |
2021-04-30 21:49:01 -04:00
| [Approach](design.md) | Correction | Correction | Correction | Correction | Dictionary |
2020-11-10 07:40:24 -05:00
| Custom Dict | Yes | No | ? | Yes | Yes |
2021-04-06 22:18:56 -04:00
| Per-Lang Dict | Yes | No | ? | No | Yes |
2019-07-13 20:45:36 -04:00
| CamelCase | Yes | No | ? | No | Yes |
| snake_case | Yes | No | ? | No | Yes |
| Ignore Hex | Yes | No | ? | No | Yes |
2019-07-13 20:45:36 -04:00
| C-Escapes | No ([#20][def-3]) | No | ? | No | Yes |
| Encodings | UTF-8 / UTF-16 | UTF-8 | ? | Auto | Auto |
2019-07-13 20:45:36 -04:00
| Whole-project | Yes | Yes | Yes | Yes | No |
| Ignores hidden | Yes | Yes | ? | Yes | No |
| Respect gitignore | Yes | Yes | ? | No | No |
2019-07-18 22:20:45 -04:00
| Checks filenames | Yes | No | ? | Yes | No |
| Status via exit code | Yes | No | Yes | Yes | Yes |
2019-07-13 20:45:36 -04:00
| API | Rust / [JSON Lines] | Rust | ? | Python | None |
| License | MIT or Apache | AGPL | MIT | GPLv2 | GPLv2 |
See also [benchmarks](../benchsuite/runs).
[JSON Lines]: http://jsonlines.org/
[scspell3k]: https://github.com/myint/scspell
[misspell-rs]: https://gitlab.com/bloom42/misspell
[misspell-go]: https://github.com/client9/misspell
2019-07-13 20:45:36 -04:00
[codespell]: https://github.com/codespell-project/codespell
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