diff options
-rw-r--r-- | .codespellrc | 5 | ||||
-rw-r--r-- | .github/workflows/codespell.yml | 3 | ||||
-rw-r--r-- | go.mod | 2 | ||||
-rw-r--r-- | go.sum | 4 |
4 files changed, 6 insertions, 8 deletions
diff --git a/.codespellrc b/.codespellrc index 750692b5..502a0de7 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,6 +1,7 @@ [codespell] -skip = .git,.venv,*.svg,package-lock.json +skip = .git,.venv,*.svg,package-lock.json,go.mod,go.sum # ot,fo,te - used as short variable names # optionall - OptionAll but codespell is case insensitive # testing - TestIn -ignore-words-list = ot,fo,te,optionall,testin +# transfered - github import test: the test repo to be imported has that typo, and it's not easy to change +ignore-words-list = ot,fo,te,optionall,testin,transfered diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 2abb1a14..5768d7c6 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -17,6 +17,3 @@ jobs: uses: actions/checkout@v3 - name: Codespell uses: codespell-project/actions-codespell@v1 - with: - # github import test: the repo to be imported has that typo, and it's not easy to change - ignore_words_list: transfered @@ -116,7 +116,7 @@ require ( go.etcd.io/bbolt v1.3.5 // indirect golang.org/x/mod v0.8.0 // indirect golang.org/x/net v0.10.0 // indirect - golang.org/x/term v0.8.0 + golang.org/x/term v0.11.0 golang.org/x/time v0.3.0 // indirect golang.org/x/tools v0.6.0 // indirect golang.org/x/vuln v0.0.0-20220908155419-5537ad2271a7 @@ -393,8 +393,8 @@ golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf/go.mod h1:bj7SfCRtBDWHUb9sn golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20220722155259-a9ba230a4035/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= -golang.org/x/term v0.8.0 h1:n5xxQn2i3PC0yLAbjTpNT85q/Kgzcr2gIoX9OrJUols= -golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= +golang.org/x/term v0.11.0 h1:F9tnn/DA/Im8nCwm+fX+1/eBwi4qFjRT++MhtVC4ZX0= +golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= |