Skip to content

Commit

Permalink
chore(deps): update crate-ci/typos action to v1.25.0 (#6200)
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://github.com/crate-ci/typos) | action
| minor | `v1.24.5` -> `v1.25.0` |

---

### Release Notes

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

###
[`v1.25.0`](https://github.com/crate-ci/typos/releases/tag/v1.25.0)

[Compare
Source](https://github.com/crate-ci/typos/compare/v1.24.6...v1.25.0)

#### \[1.25.0] - 2024-10-01

##### Fixes

- Updated the dictionary with the [September
2024](https://github.com/crate-ci/typos/issues/1107) changes

###
[`v1.24.6`](https://github.com/crate-ci/typos/releases/tag/v1.24.6)

[Compare
Source](https://github.com/crate-ci/typos/compare/v1.24.5...v1.24.6)

#### \[1.24.6] - 2024-09-16

##### Fixes

-   Respect negation (`!`) in `extend-exclude`

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **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:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Boshen <boshenc@gmail.com>
  • Loading branch information
renovate[bot] and Boshen authored Oct 1, 2024
1 parent 82ab689 commit 7a381ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: taiki-e/checkout-action@v1
- uses: crate-ci/typos@v1.24.5
- uses: crate-ci/typos@v1.25.0
with:
files: .

Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_linter/src/rules/eslint/no_script_url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use oxc_span::Span;
use crate::{context::LintContext, rule::Rule, AstNode};

fn no_script_url_diagnostic(span: Span) -> OxcDiagnostic {
OxcDiagnostic::warn("Unexpeced `javascript:` url")
OxcDiagnostic::warn("Unexpected `javascript:` url")
.with_help("Execute the code directly instead.")
.with_label(span)
}
Expand Down
8 changes: 4 additions & 4 deletions crates/oxc_linter/src/snapshots/no_script_url.snap
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
---
source: crates/oxc_linter/src/tester.rs
---
eslint(no-script-url): Unexpeced `javascript:` url
eslint(no-script-url): Unexpected `javascript:` url
╭─[no_script_url.tsx:1:9]
1var a = 'javascript:void(0);';
· ─────────────────────
╰────
help: Execute the code directly instead.

eslint(no-script-url): Unexpeced `javascript:` url
eslint(no-script-url): Unexpected `javascript:` url
╭─[no_script_url.tsx:1:9]
1var a = 'javascript:';
· ─────────────
╰────
help: Execute the code directly instead.

eslint(no-script-url): Unexpeced `javascript:` url
eslint(no-script-url): Unexpected `javascript:` url
╭─[no_script_url.tsx:1:9]
1var a = `javascript:`;
· ─────────────
╰────
help: Execute the code directly instead.

eslint(no-script-url): Unexpeced `javascript:` url
eslint(no-script-url): Unexpected `javascript:` url
╭─[no_script_url.tsx:1:9]
1var a = `JavaScript:`;
· ─────────────
Expand Down

0 comments on commit 7a381ee

Please sign in to comment.