Skip to content

Commit

Permalink
chore(deps): update crate-ci/typos action to v1.29.4 (#8265)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
renovate[bot] and camc314 authored Jan 5, 2025
1 parent cec63e2 commit 6a97e29
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: .

Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_linter/src/rules/jsdoc/require_returns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_linter/src/rules/jsdoc/require_yields.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down
3 changes: 1 addition & 2 deletions crates/oxc_linter/src/snapshots/jsdoc_require_returns.snap
Original file line number Diff line number Diff line change
@@ -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]
Expand Down Expand Up @@ -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]
Expand Down
3 changes: 1 addition & 2 deletions crates/oxc_linter/src/snapshots/jsdoc_require_yields.snap
Original file line number Diff line number Diff line change
@@ -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]
Expand Down Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_semantic/tests/integration/symbols.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
"
Expand Down

0 comments on commit 6a97e29

Please sign in to comment.