An open API service indexing awesome lists of open source software.

https://github.com/ambar/cspell-dict-pinyin

Pinyin dictionary for cspell (CLI) and Code Spell Checker (VS Code)
https://github.com/ambar/cspell-dict-pinyin

Last synced: 3 months ago
JSON representation

Pinyin dictionary for cspell (CLI) and Code Spell Checker (VS Code)

Awesome Lists containing this project

README

        

# Usage

Install dictionary:

```sh
yarn add --dev cspell-dict-pinyin
```

Config [CSpell file](https://cspell.org/configuration/#configuration) (`.cspell.json` or `cspell.json`):

```jsonc
{
"dictionaries": ["pinyin"],
"dictionaryDefinitions": [
{
"name": "pinyin",
"path": "./node_modules/cspell-dict-pinyin/words.txt.gz"
}
]
}
```