From d407e954d11e8689534fefbc3a22e359617248a2 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 fe3c45704..71914a095 100644 --- a/src/webui/www/package.json +++ b/src/webui/www/package.json @@ -11,8 +11,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": "*", "i18next-parser": "*", "js-beautify": "*",