Add spell configuration
Add basic cspell configuration and dictionary to remove false spelling warnings.
This commit is contained in:
parent
00dbe575ca
commit
01901719e5
2 changed files with 24 additions and 0 deletions
7
.cspell/custom-dictionary.txt
Normal file
7
.cspell/custom-dictionary.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Custom Dictionary Words
|
||||
skola
|
||||
goskola
|
||||
pubtypes
|
||||
zervo
|
||||
zervó
|
||||
zadachin
|
17
cspell.json
Normal file
17
cspell.json
Normal 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": []
|
||||
}
|
Loading…
Reference in a new issue