Add spell configuration

Add basic cspell configuration and dictionary to remove false spelling warnings.
This commit is contained in:
zervo 2024-12-09 08:53:01 +01:00
parent 00dbe575ca
commit 01901719e5
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,7 @@
# Custom Dictionary Words
skola
goskola
pubtypes
zervo
zervó
zadachin

17
cspell.json Normal file
View file

@ -0,0 +1,17 @@
{
"version": "0.2",
"ignorePaths": [],
"dictionaryDefinitions": [
{
"name": "custom-dictionary",
"path": "./.cspell/custom-dictionary.txt",
"addWords": true
}
],
"dictionaries": [
"custom-dictionary"
],
"words": [],
"ignoreWords": [],
"import": []
}