From 52fe1eb691b66ed391659afd136accb86bc12cac Mon Sep 17 00:00:00 2001 From: Kelly Selden <602423+kellyselden@users.noreply.github.com> Date: Sun, 21 Jul 2024 16:07:20 -0700 Subject: [PATCH] fix https://github.com/eslint-community/eslint-plugin-n/pull/13 --- index.js | 7 ------- package.json | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/index.js b/index.js index e78967f..a1fd8ec 100644 --- a/index.js +++ b/index.js @@ -12,13 +12,6 @@ module.exports = { rules: { 'strict': 'error', - 'n/no-unsupported-features/es-syntax': ['error', { - 'ignores': [ - // remove once https://github.com/mysticatea/eslint-plugin-node/issues/250 is fixed - 'dynamicImport' - ] - }], - 'json-files/restrict-ranges': [2, { pinUnstable: true }] } }; diff --git a/package.json b/package.json index 8a6f421..4012e81 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,6 @@ "peerDependencies": { "eslint-config-sane": ">=1", "eslint-plugin-json-files": ">=0.8", - "eslint-plugin-n": ">=14" + "eslint-plugin-n": ">=15.1" } }