You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let dictRaw = readFileSync(join(__dirname, 'dictionary.txt'))
let upper = /[A-Z]/
/**
* `spellcheck-cli` isn't (yet) smart enough to recognize when a known word is used at the beginning of a sentence, so disable case-sensitivity if it's strictly lower-case
* Similarly, disable possessives, plurals, and usage of the word at the end of a sentence
*/
let dict = dictRaw.toString().split('\n').map(word => {