From d44e66fc1a986d0e9f1407d4a66b1e6821f29d14 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 18 Oct 2022 11:02:17 +0200 Subject: [PATCH] Fix eslint configuration for benchmark MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .eslintrc.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index bd39bc7e..97bc34b2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -159,6 +159,12 @@ module.exports = defineConfig({ 'jsdoc/require-jsdoc': 'off' } }, + { + files: ['benchmarks/versus-external-pools/**/*.js'], + rules: { + 'node/no-missing-require': 'off' + } + }, { files: ['examples/**/*.js'], rules: { -- 2.34.1