Try fix spellcheck

This commit is contained in:
Stefan Markovic
2023-10-04 18:00:30 +02:00
parent ee76231974
commit dc8f04afb9
3 changed files with 13 additions and 9 deletions

View File

@@ -183,3 +183,6 @@ http://tes/
# ignore long runs of a single character: # ignore long runs of a single character:
\b([A-Za-z])\g{-1}{3,}\b \b([A-Za-z])\g{-1}{3,}\b
# suggested by spellcheck bot
(?:ssh-\S+|-nistp256) [-a-zA-Z=;:/0-9+]{12,}

View File

@@ -71,21 +71,22 @@ jobs:
uses: check-spelling/check-spelling@v0.0.22 uses: check-spelling/check-spelling@v0.0.22
with: with:
config: .github/actions/spell-check config: .github/actions/spell-check
suppress_push_for_open_pull_request: 1 suppress_push_for_open_pull_request: ${{ github.actor != 'dependabot[bot]' && 1 }}
checkout: true checkout: true
check_file_names: 1 check_file_names: 1
spell_check_this: check-spelling/spell-check-this@prerelease spell_check_this: check-spelling/spell-check-this@prerelease
post_comment: 0 post_comment: 0
use_magic_file: 1 use_magic_file: 1
extra_dictionary_limit: 10 extra_dictionary_limit: 10
dictionary_source_prefixes: {"cspell": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20220816/dictionaries/", "cspell_old": "https://raw.githubusercontent.com/check-spelling/cspell-dicts/v20220427/dictionaries/"}
extra_dictionaries: extra_dictionaries:
cspell:software-terms/src/software-terms.txt cspell_old:software-terms/src/software-terms.txt
cspell:cpp/src/stdlib-cpp.txt cspell_old:cpp/src/stdlib-cpp.txt
cspell:filetypes/filetypes.txt cspell_old:filetypes/filetypes.txt
cspell:cpp/src/stdlib-c.txt cspell_old:cpp/src/stdlib-c.txt
cspell:fullstack/fullstack.txt cspell_old:fullstack/fullstack.txt
cspell:html/html.txt cspell_old:html/html.txt
cspell:css/css.txt cspell_old:css/css.txt
comment-push: comment-push:
name: Report (Push) name: Report (Push)

View File

@@ -24,7 +24,7 @@ namespace Microsoft.VariantAssignment.Contract
public bool EnableCaching { get; set; } public bool EnableCaching { get; set; }
/// <summary> /// <summary>
/// Gets or sets the the maximum time a cached variant assignment response may be used without re-validating. /// Gets or sets the maximum time a cached variant assignment response may be used without re-validating.
/// </summary> /// </summary>
public TimeSpan ResponseCacheTime { get; set; } public TimeSpan ResponseCacheTime { get; set; }
} }