Skip to content

Commit

Permalink
moved .cspell.json -> src
Browse files Browse the repository at this point in the history
  • Loading branch information
friflo committed Jul 26, 2024
1 parent fb521fc commit 4199827
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .cspell.json → src/.cspell.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
// Enable your dictionary by adding it to the list of `dictionaries`
"dictionaries": ["custom-words"],

// Tell CSpell about your dictionary
"dictionaryDefinitions": [
{
// The name of the dictionary is used to look it up.
"name": "custom-words",
// Path to the custom word file. Relative to this `cspell.json` file.
"path": "./docs/lang/custom-words.txt",
// Some editor extensions will use `addWords` for adding words to your
// personal dictionary.
"addWords": true
}
]
{
// Enable your dictionary by adding it to the list of `dictionaries`
"dictionaries": ["custom-words"],

// Tell CSpell about your dictionary
"dictionaryDefinitions": [
{
// The name of the dictionary is used to look it up.
"name": "custom-words",
// Path to the custom word file. Relative to this `cspell.json` file.
"path": "../docs/lang/custom-words.txt",
// Some editor extensions will use `addWords` for adding words to your
// personal dictionary.
"addWords": true
}
]
}

0 comments on commit 4199827

Please sign in to comment.