From 48dc411553403ba7be3b6bf861c5c7a2e8df7fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Tue, 15 Oct 2024 17:31:08 +0200 Subject: [PATCH] feat: drop ESLint v6 & v7 support BREAKING CHANGE: Requires ESLint@^8.57.0 || ^9.0.0 --- .github/workflows/ci.yml | 7 ++----- package.json | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62fc935..93bf6fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,14 +60,11 @@ jobs: eslint: 8 node: 20 # On old ESLint versions - - eslint: 7 - node: 20 - os: ubuntu-latest - - eslint: 6 + - eslint: 8.57.0 node: 20 os: ubuntu-latest # On the minimum supported ESLint/Node.js version - - eslint: 6.0.0 + - eslint: 8.57.0 node: 12.22.0 os: ubuntu-latest runs-on: ${{ matrix.os }} diff --git a/package.json b/package.json index 14352f6..02a9139 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "warun": "^1.0.0" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + "eslint": "^8.57.0 || ^9.0.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0"