mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 09:27:21 +00:00
19 lines
1 KiB
JSON
19 lines
1 KiB
JSON
// `cspell` settings
|
|
{
|
|
"version": "0.1", // Version of the setting file. Always 0.1
|
|
"language": "en", // language - current active spelling language
|
|
"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" }
|
|
],
|
|
// ignorePaths - a list of globs to specify which files are to be ignored
|
|
"ignorePaths": ["Cargo.lock", "target/**", "tests/**/fixtures/**", "src/uu/dd/test-resources/**", "vendor/**"],
|
|
// ignoreWords - a list of words to be ignored (even if they are in the flagWords)
|
|
"ignoreWords": [],
|
|
// words - list of words to be always considered correct
|
|
"words": []
|
|
}
|