refactor(dict): Prepare for more dicts

This commit is contained in:
Ed Page 2019-10-28 08:19:47 -06:00
parent 03fa6f8b8a
commit 8f428b8fec
13 changed files with 7 additions and 7 deletions

1
.gitattributes vendored
View file

@ -1 +0,0 @@
typos-dict/assets/* linguist-vendored

View file

@ -1,5 +1,5 @@
[workspace]
members = ["codegen", "typos", "typos-dict"]
members = ["typos", "dict/typos", "dict/typos/codegen"]
[package]
name = "typos-cli"
@ -24,7 +24,7 @@ codecov = { repository = "crate-ci/typos" }
[dependencies]
typos = { version = "0.1", path = "typos" }
typos-dict = { version = "0.1", path = "typos-dict" }
typos-dict = { version = "0.1", path = "dict/typos" }
failure = "0.1"
structopt = "0.3"
clap = "2"

View file

@ -25,7 +25,7 @@ stages:
steps:
- template: azure/install-rust.yml@templates
- script: |
cargo run --package typos-codegen -- --input typos-dict/assets/words.csv --output typos-dict/src/dict_codegen.rs --check
cargo run --package typos-codegen -- --input dict/typos/assets/words.csv --output dict/typos/src/dict_codegen.rs --check
displayName: Verify Code-gen
- stage: committed
displayName: Lint History

View file

@ -4,7 +4,7 @@ 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"
readme = "../../README.md"
categories = ["development-tools", "text-processing"]
keywords = ["development", "spelling"]
license = "MIT"
@ -15,7 +15,7 @@ azure-devops = { project = "crate-ci", pipeline = "typos" }
codecov = { repository = "crate-ci/typos" }
[dependencies]
typos = { version = "0.1", path = "../typos" }
typos = { version = "0.1", path = "../../typos" }
phf = { version = "0.8", features = ["unicase"] }
unicase = "2.5"
log = "0.4"

1
dict/typos/assets/.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
* linguist-vendored

View file

Can't render this file because it is too large.

View file

@ -4,7 +4,7 @@ version = "1.0.1"
authors = ["Ed Page <eopage@gmail.com>"]
description = "Source Code Spelling Correction"
repository = "https://github.com/crate-ci/typos"
readme = "../README.md"
readme = "../../../README.md"
categories = ["text-processing"]
license = "MIT"
edition = "2018"