Dictionary file for Path Of Exile (PoE) 1 & 2, by Grinding Gear Games (GGG).
Includes example Code Spell Checker (CSpell) config file.
Filename | Description |
---|---|
poe-dict.txt | Words specific to Path of Exile 1 & 2. |
cspell.json | Example minimal CSpell settings file for VSCode. |
poe-dict.txt
file format:
- plain-text
- single word per line
- sorted ascending (a-z), case-insensitive
LF
terminatedUTF-8
encoded
There are no special installation instructions; it's a flat text file.
- Requirements: CSpell VSCode extension.
- Clone this repo to a local directory parallel to the project you wish to spellcheck, such that the relative path
..\PathOfSpelling
is valid. - Add the following lines to
.vscode\settings.json
in your project:
{
"CSpell.import": [ "../../PathOfSpelling/cspell.json" ],
"CSpell.language": "en,en-GB"
}
- Requirements: CSpell NPM package.
- Clone this repo to a local directory parallel to the project you wish to spellcheck, such that the relative path
..\PathOfSpelling
is valid.
Example: To run a full scan of a local project with some helpful options enabled:
PS C:\YourProject> cspell --config "..\PathOfSpelling\cspell.json" --relative --show-context --no-progress "**"
Contributions of any kind are welcome; please use GitHub's issue system.