From 59d4b626a69aab904144afd50842b588138772bd Mon Sep 17 00:00:00 2001 From: Bruno Fantauzzi Date: Wed, 24 Apr 2024 19:48:47 +0200 Subject: [PATCH] 4.3.0 --- CHANGELOG.md | 3 +++ js.js | 2 -- package.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index caf3d80..5ecca71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ > Changes to the `js` flavor are also applied to all the other flavors. > Changes to the `ts` flavor are also applied to `react` and `react-native` flavors. +## 4.3.0 + +- Removed `require-extensions` plugin. Bun ftw! ## 4.2.1 diff --git a/js.js b/js.js index e818259..7aece80 100644 --- a/js.js +++ b/js.js @@ -5,13 +5,11 @@ module.exports = { "jsdoc", "prefer-arrow-functions", "@stylistic", - "require-extensions", "json-files", ], extends: [ "eslint:recommended", "plugin:jsdoc/recommended", - "plugin:require-extensions/recommended", ], overrides: [ { diff --git a/package.json b/package.json index 2e29c5d..a74565b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-gev", - "version": "4.2.1", + "version": "4.3.0", "description": "Curated ESLint configs for TS, JS, Next, React, and React Native projects", "author": "SrBrahma", "main": "index.js",