chore(deps): update crate-ci/typos action to v1.29.4 (#8265)

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

<details>
<summary>crate-ci/typos (crate-ci/typos)</summary>

###
[`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

</details>

---

### 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.

---

- [ ] <!-- rebase-check -->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).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Cameron Clark <cameron.clark@hey.com>
This commit is contained in:
renovate[bot] 2025-01-05 22:13:32 +00:00 committed by GitHub
parent cec63e2119
commit 6a97e29c19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 6 additions and 8 deletions

View file

@ -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: .

View file

@ -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)
}

View file

@ -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)
}

View file

@ -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]

View file

@ -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]

View file

@ -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(
"