A spellchecker project for Turkish language using Hunspell dictionaries and spell checker. Project kicked by Codefiction Community while translating typescript-book to Turkish.
npm install
npm start
// Look for any file with .md extension in the 'path' and exclude node_modules folder.
const fileLoader = new FileLoader(path, /.md$/, ['node_modules']);
const spellChecker = new SpellChecker();
const checker: SpellCheckerManager = new SpellCheckerManager(fileLoader, spellChecker);
checker.CheckSpelling(); // console logs all the errors found.
This repository still in progress, and will be converted into an NPM package. Tests are missing, which means still not stable.