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
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
open_collective: htmlhint
ko_fi: coliff
github: coliff
2 changes: 0 additions & 2 deletions website/src/content/docs/rules/h1-require.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
id: h1-require
title: h1-require
description: Ensures that an HTML document contains at least one `<h1>` element for proper document structure and accessibility.
sidebar:
badge: New
---

import { Badge } from '@astrojs/starlight/components';
Expand Down
2 changes: 0 additions & 2 deletions website/src/content/docs/rules/main-require.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
id: main-require
title: main-require
description: Ensures that an HTML document contains a `<main>` element within the `<body>` tag for proper document structure and accessibility.
sidebar:
badge: New
---

import { Badge } from '@astrojs/starlight/components';
Expand Down
7 changes: 5 additions & 2 deletions website/src/content/docs/usage/github-code-scanning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ To set up HTMLHint with GitHub Code Scanning, you need to create a workflow file

```yaml
name: HTMLHint (SARIF) Code Scanning

on:
pull_request:
branches:
Expand All @@ -33,10 +34,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
persist-credentials: false

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5

# If you need a website build script, include the steps here

Expand Down
Loading