mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-24 10:00:59 -05:00
Merge pull request #21 from epage/compare
docs: Comparison with other tools
This commit is contained in:
commit
b5e75d3348
3 changed files with 69 additions and 12 deletions
15
README.md
15
README.md
|
@ -8,13 +8,11 @@
|
|||
![License](https://img.shields.io/crates/l/defenestrate.svg)
|
||||
[![Crates Status](https://img.shields.io/crates/v/defenestrate.svg)](https://crates.io/crates/defenestrate)
|
||||
|
||||
## Install
|
||||
## [Install](docs/install.md)
|
||||
|
||||
For now, `rust` is required for install:
|
||||
## [About](docs/about.md)
|
||||
|
||||
```bash
|
||||
cargo install defenestrate
|
||||
```
|
||||
## [Contribute](CONTRIBUTING.md)
|
||||
|
||||
## License
|
||||
|
||||
|
@ -25,12 +23,5 @@ Licensed under either of
|
|||
|
||||
at your option.
|
||||
|
||||
### Contribution
|
||||
|
||||
Unless you explicitly state otherwise, any contribution intentionally
|
||||
submitted for inclusion in the work by you, as defined in the Apache-2.0
|
||||
license, shall be dual licensed as above, without any additional terms or
|
||||
conditions.
|
||||
|
||||
[Crates.io]: https://crates.io/crates/defenestrate
|
||||
[Documentation]: https://docs.rs/defenestrate
|
||||
|
|
58
docs/about.md
Normal file
58
docs/about.md
Normal file
|
@ -0,0 +1,58 @@
|
|||
# About defenestrate
|
||||
|
||||
## Design Requirements
|
||||
|
||||
Spell checks source code:
|
||||
- Requires special word-splitting logic to handle situations like hex (`0xDEADBEEF`), `c\nescapes`, `snake_case`, `CamelCase`, `SCREAMING_CASE`, and maybe `arrow-case`.
|
||||
- Each programming language has its own quirks, like abbreviations, lack of word separator (`copysign`), etc
|
||||
- Backwards compatibility might require keeping misspelled words.
|
||||
- Case for proper nouns is irrelevant.
|
||||
|
||||
Checking for errors in a CI:
|
||||
- No false-positives.
|
||||
- On spelling errors, sets the exit code to fail the CI.
|
||||
|
||||
Quick feedback and resolution for developer:
|
||||
- Fix errors for the user.
|
||||
- Integration into other programs, like editors:
|
||||
- `fork`: easy to call into and provides a stable API, including output format
|
||||
- linking: either in the language of choice or bindings can be made to language of choice.
|
||||
|
||||
## Design Trade Offs
|
||||
|
||||
### defenestrate uses a blacklist
|
||||
|
||||
Blacklist: Known typos that map to their corresponding word
|
||||
- Ignores unknown typos
|
||||
- Ignores typos that follow c-escapes if they aren't handled correctly
|
||||
|
||||
Whitelist: A confidence rating is given for how close a word is to one in the whitelist
|
||||
- Sensitive to false positives due to hex numbers and c-escapes
|
||||
- Traditional spell checkers use a whitelist.
|
||||
|
||||
## Related Spell Checkers
|
||||
|
||||
| | defenestrate | [scspell3k] | [bloom42/misspell][misspell-rs] | [client9/misspell][misspell-go] |
|
||||
|---------------|----------------------|-------------|---------------------------------|---------------------------------|
|
||||
| "Runtime" | Rust ([#18][def-18] | Python | Rust | None |
|
||||
| Dictionary | Blacklist | Whitelist | Blacklist | Blacklist |
|
||||
| Custom Dict | No ([#9][def-9] | Yes | No | ? |
|
||||
| Per-Lang Dict | No ([#14][def-14] | Yes | No | ? |
|
||||
| CamelCase | Yes | Yes | No | ? |
|
||||
| snake_case | Yes | Yes | No | ? |
|
||||
| Ignore Hex | No ([#19][def-19] | Yes | No | ? |
|
||||
| C-Escapes | No ([#20][def-3] | Yes | No | ? |
|
||||
| Encodings | UTF-8 ([#17][def-17] | Auto | UTF-8 | ? |
|
||||
| API | Rust / [JSON Lines] | None | Rust | ? |
|
||||
| License | MIT | Apache | GPLv2 | AGPL | MIT |
|
||||
|
||||
[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
|
||||
[def-9]: https://github.com/epage/defenestrate/issues/9
|
||||
[def-14]: https://github.com/epage/defenestrate/issues/14
|
||||
[def-17]: https://github.com/epage/defenestrate/issues/17
|
||||
[def-18]: https://github.com/epage/defenestrate/issues/18
|
||||
[def-19]: https://github.com/epage/defenestrate/issues/19
|
||||
[def-3]: https://github.com/epage/defenestrate/issues/3
|
8
docs/install.md
Normal file
8
docs/install.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Install
|
||||
|
||||
For now, `rust` is required for install:
|
||||
|
||||
```bash
|
||||
cargo install defenestrate
|
||||
```
|
||||
|
Loading…
Reference in a new issue