Skip to content

Path Of Exile Dictionary

License

Notifications You must be signed in to change notification settings

Nightblade/PathOfSpelling

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PathOfSpelling

Dictionary file for Path Of Exile (PoE) 1 & 2, by Grinding Gear Games (GGG).

Includes example Code Spell Checker (CSpell) config file.

Components

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 terminated
  • UTF-8 encoded

Installation

There are no special installation instructions; it's a flat text file.

(optional) VSCode spell-checking with CSpell

  • 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"
}

(optional) Command-line spell-checking with CSpell

  • 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 "**"

Contributing

Contributions of any kind are welcome; please use GitHub's issue system.

License

MIT