Skip to content

Commit

Permalink
feat: Expose client9/misspell's dict to Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Page committed Oct 28, 2019
1 parent ce1ef2c commit 3daafd1
Show file tree
Hide file tree
Showing 11 changed files with 68,854 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"typos",
"dict/typos", "dict/typos/codegen",
"dict/codespell", "dict/codespell/codegen",
"dict/misspell", "dict/misspell/codegen",
]

[package]
Expand Down
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ stages:
- script: |
cargo run --package codespell-codegen -- --output dict/codespell/src/dict_codegen.rs --check
displayName: Verify codespell-dict
- script: |
cargo run --package misspell-codegen -- --output dict/misspell/src/dict_codegen.rs --check
displayName: Verify misspell-dict
- stage: committed
displayName: Lint History
dependsOn: []
Expand Down
20 changes: 20 additions & 0 deletions dict/misspell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "misspell-dict"
version = "0.1.1"
authors = ["Ed Page <eopage@gmail.com>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
readme = "README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
license = "MIT"
edition = "2018"

[badges]
azure-devops = { project = "crate-ci", pipeline = "typos" }
codecov = { repository = "crate-ci/typos" }

[dependencies]
phf = { version = "0.8", features = ["unicase"] }
unicase = "2.5"
log = "0.4"
1 change: 1 addition & 0 deletions dict/misspell/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Origin: [misspell](https://github.com/client9/misspell)
1 change: 1 addition & 0 deletions dict/misspell/assets/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* linguist-vendored

0 comments on commit 3daafd1

Please sign in to comment.