mirror of
https://github.com/uutils/coreutils
synced 2024-11-17 02:08:09 +00:00
d26f6f0f2f
Mostly to flush the highlighting cache on GitHub, but hopefully it also improves the file.
33 lines
999 B
JSON
33 lines
999 B
JSON
// `cspell` settings
|
|
{
|
|
// version of the setting file (always 0.1)
|
|
"version": "0.1",
|
|
|
|
// spelling language
|
|
"language": "en",
|
|
|
|
// custom dictionaries
|
|
"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" }
|
|
],
|
|
|
|
// 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)
|
|
"ignoreWords": [],
|
|
|
|
// words to always consider correct
|
|
"words": []
|
|
}
|