Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,11 @@ Sponsorship at any level is appreciated and encouraged. If you built a paid prod
<br />
<a style="text-decoration:none;" href="https://cybozu.co.jp/index.html" target="_blank">Cybozu</a>
</td>
<td align="center">
<img src="https://avatars.githubusercontent.com/u/147273133?s=200&v=4" height="50px;" alt="Juno logo" />
<br />
<a style="text-decoration:none;" href="https://juno.build/?utm_source=zod" target="_blank">Juno</a>
</td>
</tr>
</table>

Expand Down
5 changes: 5 additions & 0 deletions deno/lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,11 @@ Sponsorship at any level is appreciated and encouraged. If you built a paid prod
<br />
<a style="text-decoration:none;" href="https://cybozu.co.jp/index.html" target="_blank">Cybozu</a>
</td>
<td align="center">
<img src="https://avatars.githubusercontent.com/u/147273133?s=200&v=4" height="50px;" alt="Juno logo" />
<br />
<a style="text-decoration:none;" href="https://juno.build/?utm_source=zod" target="_blank">Juno</a>
</td>
Comment on lines +418 to +422
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick (assertive)

Add rel attribute for external links
Since this anchor uses target="_blank", it’s best practice to include rel="noopener noreferrer" to prevent tab-nabbing and improve security.

-      <a style="text-decoration:none;" href="https://juno.build/?utm_source=zod" target="_blank">Juno</a>
+      <a style="text-decoration:none;" href="https://juno.build/?utm_source=zod" target="_blank" rel="noopener noreferrer">Juno</a>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<td align="center">
<img src="https://avatars.githubusercontent.com/u/147273133?s=200&v=4" height="50px;" alt="Juno logo" />
<br />
<a style="text-decoration:none;" href="https://juno.build/?utm_source=zod" target="_blank">Juno</a>
</td>
<td align="center">
<img src="https://avatars.githubusercontent.com/u/147273133?s=200&v=4" height="50px;" alt="Juno logo" />
<br />
<a style="text-decoration:none;" href="https://juno.build/?utm_source=zod" target="_blank" rel="noopener noreferrer">Juno</a>
</td>
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

418-418: Inline HTML
Element: td

(MD033, no-inline-html)


419-419: Inline HTML
Element: img

(MD033, no-inline-html)


420-420: Inline HTML
Element: br

(MD033, no-inline-html)


421-421: Inline HTML
Element: a

(MD033, no-inline-html)

🤖 Prompt for AI Agents
In deno/lib/README.md around lines 418 to 422, the anchor tag with
target="_blank" is missing the rel="noopener noreferrer" attribute. To fix this,
add rel="noopener noreferrer" to the anchor tag to enhance security and prevent
tab-nabbing vulnerabilities.

</tr>
</table>

Expand Down