From 6a97e29c19b09d50d6faf940f4e91f5ebd51abe1 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Sun, 5 Jan 2025 22:13:32 +0000
Subject: [PATCH] chore(deps): update crate-ci/typos action to v1.29.4 (#8265)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [crate-ci/typos](https://redirect.github.com/crate-ci/typos) | action
| minor | `v1.28.3` -> `v1.29.4` |
---
### Release Notes
crate-ci/typos (crate-ci/typos)
###
[`v1.29.4`](https://redirect.github.com/crate-ci/typos/releases/tag/v1.29.4)
[Compare
Source](https://redirect.github.com/crate-ci/typos/compare/v1.29.3...v1.29.4)
#### \[1.29.4] - 2025-01-03
###
[`v1.29.3`](https://redirect.github.com/crate-ci/typos/releases/tag/v1.29.3)
[Compare
Source](https://redirect.github.com/crate-ci/typos/compare/v1.29.2...v1.29.3)
#### \[1.29.3] - 2025-01-02
###
[`v1.29.2`](https://redirect.github.com/crate-ci/typos/compare/v1.29.1...v1.29.2)
[Compare
Source](https://redirect.github.com/crate-ci/typos/compare/v1.29.1...v1.29.2)
###
[`v1.29.1`](https://redirect.github.com/crate-ci/typos/releases/tag/v1.29.1)
[Compare
Source](https://redirect.github.com/crate-ci/typos/compare/v1.29.0...v1.29.1)
#### \[1.29.1] - 2025-01-02
##### Fixes
- Don't correct `deriver`
###
[`v1.29.0`](https://redirect.github.com/crate-ci/typos/releases/tag/v1.29.0)
[Compare
Source](https://redirect.github.com/crate-ci/typos/compare/v1.28.4...v1.29.0)
#### \[1.29.0] - 2024-12-31
##### Features
- Updated the dictionary with the [December
2024](https://redirect.github.com/crate-ci/typos/issues/1156) changes
##### Performance
- Sped up dictionary lookups
###
[`v1.28.4`](https://redirect.github.com/crate-ci/typos/releases/tag/v1.28.4)
[Compare
Source](https://redirect.github.com/crate-ci/typos/compare/v1.28.3...v1.28.4)
#### \[1.28.4] - 2024-12-16
##### Features
- `--format sarif` support
---
### Configuration
๐
**Schedule**: Branch creation - At any time (no schedule defined),
Automerge - "before 11am on monday" in timezone Asia/Shanghai.
๐ฆ **Automerge**: Enabled.
โป **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
๐ **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/oxc-project/oxc).
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Cameron Clark
---
.github/workflows/ci.yml | 2 +-
crates/oxc_linter/src/rules/jsdoc/require_returns.rs | 2 +-
crates/oxc_linter/src/rules/jsdoc/require_yields.rs | 2 +-
crates/oxc_linter/src/snapshots/jsdoc_require_returns.snap | 3 +--
crates/oxc_linter/src/snapshots/jsdoc_require_yields.snap | 3 +--
crates/oxc_semantic/tests/integration/symbols.rs | 2 +-
6 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2dd4c5645f348..98d16407358e9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -147,7 +147,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: taiki-e/checkout-action@b13d20b7cda4e2f325ef19895128f7ff735c0b3d # v1.3.1
- - uses: crate-ci/typos@d1c850b2b5d502763520c25fb4a6a1128ad99bd9 # v1.28.3
+ - uses: crate-ci/typos@685eb3d55be2f85191e8c84acb9f44d7756f84ab # v1.29.4
with:
files: .
diff --git a/crates/oxc_linter/src/rules/jsdoc/require_returns.rs b/crates/oxc_linter/src/rules/jsdoc/require_returns.rs
index fd8079cf53613..366071c323cf4 100644
--- a/crates/oxc_linter/src/rules/jsdoc/require_returns.rs
+++ b/crates/oxc_linter/src/rules/jsdoc/require_returns.rs
@@ -26,7 +26,7 @@ fn missing_returns_diagnostic(span: Span) -> OxcDiagnostic {
}
fn duplicate_returns_diagnostic(span: Span) -> OxcDiagnostic {
OxcDiagnostic::warn("Duplicate `@returns` tags.")
- .with_help("Remove redundunt `@returns` tag.")
+ .with_help("Remove redundant `@returns` tag.")
.with_label(span)
}
diff --git a/crates/oxc_linter/src/rules/jsdoc/require_yields.rs b/crates/oxc_linter/src/rules/jsdoc/require_yields.rs
index 8382bc3409030..95707e09bc0aa 100644
--- a/crates/oxc_linter/src/rules/jsdoc/require_yields.rs
+++ b/crates/oxc_linter/src/rules/jsdoc/require_yields.rs
@@ -24,7 +24,7 @@ fn missing_yields(span: Span) -> OxcDiagnostic {
fn duplicate_yields(span: Span) -> OxcDiagnostic {
OxcDiagnostic::warn("Duplicate `@yields` tags.")
- .with_help("Remove redundunt `@yields` tag.")
+ .with_help("Remove redundant `@yields` tag.")
.with_label(span)
}
diff --git a/crates/oxc_linter/src/snapshots/jsdoc_require_returns.snap b/crates/oxc_linter/src/snapshots/jsdoc_require_returns.snap
index 5ad5631b6c1f5..7b5cdb2d332a8 100644
--- a/crates/oxc_linter/src/snapshots/jsdoc_require_returns.snap
+++ b/crates/oxc_linter/src/snapshots/jsdoc_require_returns.snap
@@ -1,6 +1,5 @@
---
source: crates/oxc_linter/src/tester.rs
-snapshot_kind: text
---
โ eslint-plugin-jsdoc(require-returns): Missing JSDoc `@returns` declaration for function.
โญโ[require_returns.tsx:5:14]
@@ -135,7 +134,7 @@ snapshot_kind: text
ยท โโโโโโโโ
5 โ */
โฐโโโโ
- help: Remove redundunt `@returns` tag.
+ help: Remove redundant `@returns` tag.
โ eslint-plugin-jsdoc(require-returns): Missing JSDoc `@returns` declaration for function.
โญโ[require_returns.tsx:5:14]
diff --git a/crates/oxc_linter/src/snapshots/jsdoc_require_yields.snap b/crates/oxc_linter/src/snapshots/jsdoc_require_yields.snap
index 4ca7c25d2cda2..bdf0bea33f75c 100644
--- a/crates/oxc_linter/src/snapshots/jsdoc_require_yields.snap
+++ b/crates/oxc_linter/src/snapshots/jsdoc_require_yields.snap
@@ -1,6 +1,5 @@
---
source: crates/oxc_linter/src/tester.rs
-snapshot_kind: text
---
โ eslint-plugin-jsdoc(require-yields): Missing JSDoc `@yields` declaration for generator function.
โญโ[require_yields.tsx:5:20]
@@ -110,7 +109,7 @@ snapshot_kind: text
ยท โโโโโโโ
5 โ */
โฐโโโโ
- help: Remove redundunt `@yields` tag.
+ help: Remove redundant `@yields` tag.
โ eslint-plugin-jsdoc(require-yields): Missing JSDoc `@yields` declaration for generator function.
โญโ[require_yields.tsx:5:20]
diff --git a/crates/oxc_semantic/tests/integration/symbols.rs b/crates/oxc_semantic/tests/integration/symbols.rs
index d7d5e95465e20..dc6247df6287f 100644
--- a/crates/oxc_semantic/tests/integration/symbols.rs
+++ b/crates/oxc_semantic/tests/integration/symbols.rs
@@ -278,7 +278,7 @@ fn test_value_used_as_type() {
.test();
// T is a value that gets shadowed by a type. When `T` is referenced within
- // a value context, the root `const T` should be the symbol recoreded in the
+ // a value context, the root `const T` should be the symbol recorded in the
// reference.
let tester = SemanticTester::ts(
"