From 18bba1231588455eddb736ab1adfdfea74cf3115 Mon Sep 17 00:00:00 2001 From: ryan-preble Date: Tue, 25 Feb 2025 14:31:33 -0500 Subject: [PATCH] Try to make linter use .htmlhintrc --- .github/linters/.htmlhintrc | 5 +++++ .github/workflows/linter.yml | 1 + 2 files changed, 6 insertions(+) create mode 100644 .github/linters/.htmlhintrc diff --git a/.github/linters/.htmlhintrc b/.github/linters/.htmlhintrc new file mode 100644 index 0000000000..3350e566ec --- /dev/null +++ b/.github/linters/.htmlhintrc @@ -0,0 +1,5 @@ +{ + "head-script-disabled": false, + "alt-require": false, + "id-class-value": false +} diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index d33ba75e24..a08e38b9bf 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -35,6 +35,7 @@ jobs: env: # To report GitHub Actions status checks GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + HTMLHINT_CONFIG_FILE: .github/linters/.htmlhintrc VALIDATE_ALL_CODEBASE: false VALIDATE_ANSIBLE: false VALIDATE_CHECKOV: false