From 8da2ca05933c14123b64f620df6311652d2d2ccc Mon Sep 17 00:00:00 2001 From: Enguerrand de Ribaucourt Date: Wed, 18 Sep 2024 10:32:43 +0200 Subject: [PATCH] Lint: Fix eslint-plugin-header dependency The latest release is not yet compatible with our version of ESLint. While awaiting the next release, we'll use a fork which has the fix. See https://github.com/Stuk/eslint-plugin-header/issues/57 --- eslint.config.mjs | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 44e26433c..393fff2c0 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,4 +1,4 @@ -import header from "@tony.ganchev/eslint-plugin-header"; +import header from "eslint-plugin-header"; import globals from "globals"; import pluginJs from "@eslint/js"; import tseslint from "typescript-eslint"; diff --git a/package.json b/package.json index f601dac08..77256312f 100644 --- a/package.json +++ b/package.json @@ -897,7 +897,7 @@ }, "devDependencies": { "@eslint/js": "^9.10.0", - "@tony.ganchev/eslint-plugin-header": "^3.1.2", + "eslint-plugin-header": "github:tonyganchev/eslint-plugin-header#36161b3282e088ad2f19657ab0e377651b6886c2", "@types/find": "^0.2.4", "@types/glob": "^8.1.0", "@types/jest": "^29.5.12",