2020-05-28 21:14:12 +00:00
|
|
|
// `cspell` settings
|
|
|
|
{
|
2022-02-12 05:40:34 +00:00
|
|
|
// version of the setting file
|
|
|
|
"version": "0.2",
|
2022-02-01 22:36:50 +00:00
|
|
|
|
|
|
|
// spelling language
|
|
|
|
"language": "en",
|
|
|
|
|
|
|
|
// custom dictionaries
|
2021-05-28 01:47:17 +00:00
|
|
|
"dictionaries": ["acronyms+names", "jargon", "people", "shell", "workspace"],
|
|
|
|
"dictionaryDefinitions": [
|
|
|
|
{ "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": "workspace", "path": "./cspell.dictionaries/workspace.wordlist.txt" }
|
|
|
|
],
|
2022-02-01 22:36:50 +00:00
|
|
|
|
|
|
|
// files to ignore (globs supported)
|
|
|
|
"ignorePaths": [
|
|
|
|
"Cargo.lock",
|
|
|
|
"target/**",
|
|
|
|
"tests/**/fixtures/**",
|
|
|
|
"src/uu/dd/test-resources/**",
|
|
|
|
"vendor/**"
|
|
|
|
],
|
|
|
|
|
|
|
|
// words to ignore (even if they are in the flagWords)
|
2021-05-28 01:47:17 +00:00
|
|
|
"ignoreWords": [],
|
2022-02-01 22:36:50 +00:00
|
|
|
|
|
|
|
// words to always consider correct
|
2021-05-28 01:47:17 +00:00
|
|
|
"words": []
|
2020-05-28 21:14:12 +00:00
|
|
|
}
|