Skip to content

Commit

Permalink
maint/dev ~ revise cspell to allow local exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed Aug 13, 2022
1 parent b523f92 commit 7436a9b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
// `cspell` settings
// `cspell` configuration/settings
// ref: <https://cspell.org/configuration/https://cspell.org/configuration>
// v2022.08.09 [rivy]
{
"version": "0.1", // Version of the setting file. Always 0.1
"version": "0.2", // configuration/settings file version
"language": "en", // language - current active spelling language
"dictionaries": ["#local", "acronyms+names", "jargon", "people", "shell", "workspace"],
"dictionaryDefinitions": [
{ "name": "#local", "path": "./cspell.dictionaries/#local-only.wordlist.txt" },
{ "name": "acronyms+names", "path": "./cspell.dictionaries/acronyms+names.wordlist.txt" },
{ "name": "jargon", "path": "./cspell.dictionaries/jargon.wordlist.txt" },
{ "name": "people", "path": "./cspell.dictionaries/people.wordlist.txt" },
{ "name": "shell", "path": "./cspell.dictionaries/shell.wordlist.txt" }
{ "name": "shell", "path": "./cspell.dictionaries/shell.wordlist.txt" },
{ "name": "workspace", "path": "./cspell.dictionaries/workspace.wordlist.txt" }
],
"dictionaries": ["acronyms+names", "jargon", "people", "shell", "shell-posix", "shell-windows"],
// ignorePaths - a list of globs to specify which files are to be ignored
"ignorePaths": ["{,.,_,#,@}build/**", "{,.,_,#,@}coverage/**", "{,.,_,#,@}target/**", "tests/**/fixtures/**", "vendor/**"],
// ignoreWords
"ignoreWords": [],
// words - list of words to be always considered correct
Expand Down

0 comments on commit 7436a9b

Please sign in to comment.