From b822ab52e121bbd215c13165f5889cab94c60e36 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 15 Nov 2021 16:07:59 +0100 Subject: [PATCH 1/2] Update to ESLint 8 --- package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 144d61b..13810e6 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,21 @@ { "name": "@20minutes/eslint-config", - "version": "1.2.2", + "version": "1.2.3", "description": "ESLint shareable config for 20 Minutes", "license": "MIT", "devDependencies": { - "@babel/core": "^7.15.5", - "@babel/eslint-parser": "^7.15.4", - "eslint": "^7.32.0", - "eslint-config-airbnb": ">=16.0.0", + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "eslint": "^8.2.0", + "eslint-config-airbnb": ">=19.0.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-babel": "^5.0", - "eslint-plugin-import": "^2.24.2", - "eslint-plugin-jsx-a11y": "^6.3.0", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-prettier": "^4.0.0", - "eslint-plugin-react": "^7.25.1", - "eslint-plugin-react-hooks": "^1.7.0 || ^2.3.0 || ^3 || ^4", - "prettier": "^2.3.2" + "eslint-plugin-react": "^7.27.0", + "eslint-plugin-react-hooks": "^4.3.0", + "prettier": "^2.4.1" }, "peerDependencies": { "eslint": "7.* || 8.*", From 4e18e20d557224d3c0a8179c9f13ef19b9fb4b2a Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Mon, 15 Nov 2021 16:08:49 +0100 Subject: [PATCH 2/2] Drop Node 10 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9323eaf..2a391e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [12.x, 14.x, 16.x] steps: - name: checkout