-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Expose codespell's dict to Rust
- Loading branch information
Ed Page
committed
Oct 28, 2019
1 parent
8f428b8
commit 1cbdb3a
Showing
11 changed files
with
51,234 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[package] | ||
name = "codespell-dict" | ||
version = "0.1.1" | ||
authors = ["Ed Page <[email protected]>"] | ||
description = "Source Code Spelling Correction" | ||
repository = "https://github.com/crate-ci/typos" | ||
readme = "README.md" | ||
categories = ["development-tools", "text-processing"] | ||
keywords = ["development", "spelling"] | ||
license = "CC-BY-SA-3.0" | ||
edition = "2018" | ||
|
||
[badges] | ||
azure-devops = { project = "crate-ci", pipeline = "typos" } | ||
codecov = { repository = "crate-ci/typos" } | ||
|
||
[dependencies] | ||
typos = { version = "0.1", path = "../../typos" } | ||
phf = { version = "0.8", features = ["unicase"] } | ||
unicase = "2.5" | ||
log = "0.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Origin: [codespell](https://github.com/codespell-project/codespell) | ||
|
||
# License | ||
|
||
dictionary.txt is a derived work of English Wikipedia and is released under the Creative Commons Attribution-Share-Alike License 3.0 http://creativecommons.org/licenses/by-sa/3.0/ |
Oops, something went wrong.