File tree Expand file tree Collapse file tree
crates/codebook/src/dictionaries Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -254,6 +254,7 @@ Project-specific configuration is loaded from either `codebook.toml` or `.codebo
254254# - Latvian: "lv"
255255# - Vietnamese: "vi_vn"
256256# - Polish: "pl"
257+ # - Ukrainian: "uk"
257258dictionaries = [" en_us" , " en_gb" ]
258259
259260# Custom allowlist of words to ignore (case-insensitive)
Original file line number Diff line number Diff line change @@ -144,6 +144,11 @@ static HUNSPELL_DICTIONARIES: LazyLock<Vec<HunspellRepo>> = LazyLock::new(|| {
144144 "https://raw.githubusercontent.com/blopker/dictionaries/refs/heads/main/dictionaries/pl/index.aff" ,
145145 "https://raw.githubusercontent.com/blopker/dictionaries/refs/heads/main/dictionaries/pl/index.dic" ,
146146 ) ,
147+ HunspellRepo :: new(
148+ "uk" ,
149+ "https://raw.githubusercontent.com/blopker/dictionaries/refs/heads/main/dictionaries/uk/index.aff" ,
150+ "https://raw.githubusercontent.com/blopker/dictionaries/refs/heads/main/dictionaries/uk/index.dic" ,
151+ ) ,
147152 ]
148153} ) ;
149154
You can’t perform that action at this time.
0 commit comments