Skip to content

Commit

Permalink
fixup! feat(linter): Implement iframe-has-title rule for jsx_a11y plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinyaigeek committed Dec 2, 2023
1 parent 7334857 commit 77033a4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions crates/oxc_linter/src/rules/jsx_a11y/iframe_has_title.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl Rule for IframeHasTitle {
let alt_prop = if let Some(prop) = has_jsx_prop_lowercase(jsx_el, "title") {
prop
} else {
ctx.diagnostic(IframeHasTitleDiagnostic(jsx_el.span));
ctx.diagnostic(IframeHasTitleDiagnostic(iden.span));
return;
};

Expand Down Expand Up @@ -115,7 +115,7 @@ impl Rule for IframeHasTitle {
_ => {}
}

ctx.diagnostic(IframeHasTitleDiagnostic(jsx_el.span));
ctx.diagnostic(IframeHasTitleDiagnostic(iden.span));
}
}

Expand Down
36 changes: 18 additions & 18 deletions crates/oxc_linter/src/snapshots/iframe_has_title.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2,66 +2,66 @@
source: crates/oxc_linter/src/tester.rs
expression: iframe_has_title
---
eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe />
· ──────────
· ──────
╰────
help: Provide title property for iframe element.

eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe {...props} />
· ─────────────────────
· ──────
╰────
help: Provide title property for iframe element.

eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe title={undefined} />
· ────────────────────────────
· ──────
╰────
help: Provide title property for iframe element.

eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe title='' />
· ───────────────────
· ──────
╰────
help: Provide title property for iframe element.

eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe title={false} />
· ────────────────────────
· ──────
╰────
help: Provide title property for iframe element.

eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe title={true} />
· ───────────────────────
· ──────
╰────
help: Provide title property for iframe element.

eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe title={''} />
· ─────────────────────
· ──────
╰────
help: Provide title property for iframe element.

eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe title={``} />
· ─────────────────────
· ──────
╰────
help: Provide title property for iframe element.

eslint(iframe-has-title): Missing `title` attribute for the `iframe` element.
eslint-plugin-jsx-a11y(iframe-has-title): Missing `title` attribute for the `iframe` element.
╭─[iframe_has_title.tsx:1:1]
1<iframe title={42} />
· ─────────────────────
· ──────
╰────
help: Provide title property for iframe element.

Expand Down

0 comments on commit 77033a4

Please sign in to comment.