feat(spell): applied spell check it works by hook if you install packages, complete partly #4

This commit is contained in:
Konrad Geletey 2023-04-11 20:04:43 +03:00
parent 5738df5060
commit e1d85bc651
Signed by: kglt
GPG key ID: 386DEE24B60BD996
6 changed files with 1189 additions and 0 deletions

21
.cspell.json Normal file
View file

@ -0,0 +1,21 @@
{
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
"version": "0.2",
"dictionaries": ["latex", "ru-ru", "en-gb", "custom"],
"import": [
"@cspell/dict-ru_ru/cspell-ext.json",
"@cspell/dict-en-gb/cspell-ext.json",
"@cspell/dict-latex/cspell-ext.json",
"@cspell/dict-fullstack/cspell-ext.json",
"@cspell/dict-markdown/cspell-ext.json",
"@cspell/dict-software-terms/cspell-ext.json"
],
"dictionaryDefinitions": [
{
"name": "custom",
"path": "src/dictionary.txt",
"addWords": true
}
],
"ignorePaths": ["LICENSE.md", "AUTHORS.md", "CODE_OF_CONDUCT.md"]
}