[ci]Upgrade check-spelling to v0.0.20 (#19574)

This commit is contained in:
Josh Soref 2022-07-27 06:39:46 -04:00 коммит произвёл GitHub
Родитель da9c2b649b
Коммит a397e72eb0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 32 добавлений и 22 удалений

22
.github/actions/spell-check/advice.md поставляемый
Просмотреть файл

@ -1,7 +1,17 @@
<!-- See https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples%3A-advice --> <!-- markdownlint-disable MD033 MD041 -->
<details><summary>If the flagged items do not appear to be text</summary>
<details><summary>If the flagged items are false positives</summary>
If items relate to a ...
* binary file (or some other file you wouldn't want to check at all).
Please add a file path to the `excludes.txt` file matching the containing file.
File paths are Perl 5 Regular Expressions - you can [test](
https://www.regexplanet.com/advanced/perl/) yours before committing to verify it will match your files.
`^` refers to the file's path from the root of the repository, so `^README\.md$` would exclude [README.md](
../tree/HEAD/README.md) (on whichever branch you're using).
* well-formed pattern.
If you can write a [pattern](https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples:-patterns) that would match it,
@ -12,14 +22,4 @@ https://www.regexplanet.com/advanced/perl/) yours before committing to verify it
Note that patterns can't match multiline strings.
* binary file.
Please add a file path to the `excludes.txt` file matching the containing file.
File paths are Perl 5 Regular Expressions - you can [test](
https://www.regexplanet.com/advanced/perl/) yours before committing to verify it will match your files.
`^` refers to the file's path from the root of the repository, so `^README\.md$` would exclude [README.md](
../tree/HEAD/README.md) (on whichever branch you're using).
</details>

2
.github/actions/spell-check/excludes.txt поставляемый
Просмотреть файл

@ -71,7 +71,7 @@ ignore$
^src/modules/previewpane/UnitTests-MarkdownPreviewHandler/HelperFiles/MarkdownWithHTMLImageTag.txt$
^tools/CleanUp_tool/CleanUp_tool\.vcxproj\.filters$
^tools/Verification scripts/Check preview handler registration\.ps1$
^\.github/
^\.github/actions/spell-check/
^\.gitmodules$
^\Q.github/workflows/spelling2.yml\E$
^\Q.pipelines/ESRPSigning_core.json\E$

8
.github/actions/spell-check/expect.txt поставляемый
Просмотреть файл

@ -393,7 +393,6 @@ dcomp
dcompi
DComposition
ddf
DDLM
Deact
debian
debugbreak
@ -978,6 +977,7 @@ IVirtual
IWbem
IWIC
iwindow
iwr
IXml
IYUV
IZone
@ -1292,7 +1292,6 @@ MYTZ
NAMECHANGE
nameof
namespace
namespaceanddescendants
Navassa
naveensrinivasan
NCACTIVATE
@ -1403,6 +1402,7 @@ NUMLOCK
NUMPAD
Nunavut
Nusa
nushell
nwc
NWSE
Objbase
@ -1726,7 +1726,6 @@ Rsp
rst
Rstrtmgr
RTB
RTCS
RTLREADING
RTSS
runas
@ -2078,6 +2077,7 @@ TYPESHORTCUT
UAC
UAL
uap
ubuntu
udit
Udk
Udmurtia
@ -2262,6 +2262,7 @@ winexe
winforms
winfx
winget
wingetcreate
Winhook
winkey
WINL
@ -2369,6 +2370,7 @@ YVYU
Zabaykalsky
ZEROINIT
ZIndex
zipfile
zonable
ZONECOLOR
ZONEHIGHLIGHTCOLOR

Просмотреть файл

@ -14,13 +14,20 @@
\bMicroSoft\b
# s.b. another
\ban other\b
\ban[- ]other\b
# s.b. greater than
\bgreater then\b
# s.b. less than
\bless then\b
# s.b. otherwise
\bother wise\b
\bother[- ]wise\b
# s.b. nonexistent
\bnon existing\b
\b[Nn]o[nt][- ]existent\b
# s.b. preexisting
[Pp]re-existing

6
.github/actions/spell-check/patterns.txt поставляемый
Просмотреть файл

@ -1,4 +1,5 @@
# See https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples:-patterns
https?://(?:(?:www\.|)youtube\.com|youtu.be)/[-a-zA-Z0-9?&=]*
# GitHub SHAs
\bapi.github\.com/repos/[^/]+/[^/]+/[^/]+/[0-9a-f]+\b
@ -104,7 +105,12 @@ http://tes/
# tar arguments
\b(?:\\n|)tar(?:\s+-[a-zA-Z]+|\s[a-z]+)+
# fabricbot.json
"id": "\S+"
"commentPattern": ".*"
# acceptable duplicates
# ls directory listings
# /bin/ls -l output
[-bcdlpsw](?:[-r][-w][-sx]){3}\s+\d+\s+(\S+)\s+\g{-1}\s+\d+\s+
# C types

5
.github/workflows/spelling2.yml поставляемый
Просмотреть файл

@ -51,8 +51,3 @@ jobs:
config: .github/actions/spell-check
checkout: true
task: ${{ needs.spelling.outputs.followup }}
extra_dictionaries:
cspell:filetypes/filetypes.txt
cspell:html/html.txt
cspell:css/css.txt
check_extra_dictionaries: ''