Skip to content

Commit aaa498f

Browse files
ericyangpanclaude
andcommitted
chore: expand cspell language support and custom words
Add support for Spanish, French, Portuguese, and Russian dictionaries. Include additional custom words (linkedin, gemini, aicodingstack). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 52c46a2 commit aaa498f

File tree

1 file changed

+26
-3
lines changed

1 file changed

+26
-3
lines changed

cspell.json

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,33 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
33
"version": "0.2",
4-
"language": "en,de",
5-
"dictionaries": ["de"],
4+
"language": "en,de,es,fr,pt,ru",
5+
"dictionaries": ["de", "es", "fr", "pt", "ru"],
66
"dictionaryDefinitions": [
77
{
88
"name": "de",
99
"path": "node_modules/@cspell/dict-de-de/de_DE.trie.gz",
1010
"description": "German dictionary"
11+
},
12+
{
13+
"name": "es",
14+
"path": "node_modules/@cspell/dict-es-es/Spanish.trie.gz",
15+
"description": "Spanish dictionary"
16+
},
17+
{
18+
"name": "fr",
19+
"path": "node_modules/@cspell/dict-fr-fr/fr-fr.trie.gz",
20+
"description": "French dictionary"
21+
},
22+
{
23+
"name": "pt",
24+
"path": "node_modules/@cspell/dict-pt-pt/dict/Portuguese-European.trie.gz",
25+
"description": "Portuguese dictionary"
26+
},
27+
{
28+
"name": "ru",
29+
"path": "node_modules/@cspell/dict-ru_ru/ru_RU.trie.gz",
30+
"description": "Russian dictionary"
1131
}
1232
],
1333
"useGitignore": true,
@@ -33,7 +53,10 @@
3353
"RLHF",
3454
"Roo",
3555
"shareAI",
36-
"TRAE"
56+
"TRAE",
57+
"linkedin",
58+
"gemini",
59+
"aicodingstack"
3760
],
3861
"allowCompoundWords": true
3962
}

0 commit comments

Comments
 (0)