mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
chore(deps): update crate-ci/typos action to v1.25.0 (#6200)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [crate-ci/typos](https://redirect.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://redirect.github.com/crate-ci/typos/releases/tag/v1.25.0) [Compare Source](https://redirect.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://redirect.github.com/crate-ci/typos/issues/1107) changes ### [`v1.24.6`](https://redirect.github.com/crate-ci/typos/releases/tag/v1.24.6) [Compare Source](https://redirect.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>
This commit is contained in:
parent
82ab68984e
commit
7a381ee8f0
3 changed files with 6 additions and 6 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -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: .
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
1 │ var 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]
|
||||
1 │ var 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]
|
||||
1 │ var 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]
|
||||
1 │ var a = `JavaScript:`;
|
||||
· ─────────────
|
||||
|
|
|
|||
Loading…
Reference in a new issue