From db384896b8d394595214ba6c27b337b4c70da623 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Tue, 9 Apr 2024 14:12:30 +0800 Subject: [PATCH] GHA CI: lock to ESLint v8 For unknown reasons, ESLint v9 doesn't work correctly. Migration to ESLint v9 will be done later when it is stable enough. PR #20665. --- src/webui/www/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/www/package.json b/src/webui/www/package.json index 6be44e273..e527fed26 100644 --- a/src/webui/www/package.json +++ b/src/webui/www/package.json @@ -10,8 +10,8 @@ "lint": "eslint private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && stylelint **/*.css && html-validate private public" }, "devDependencies": { - "eslint": "*", - "eslint-plugin-html": "*", + "eslint": "^8", + "eslint-plugin-html": "^8", "html-validate": "*", "js-beautify": "*", "prettier": "*",