From 28709b660ebb0e732700acd54543ef02ac3b6f4e Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Mon, 23 Sep 2024 18:02:54 +0200 Subject: [PATCH] fix(eslint): accept Node 16 ES sytaxes in tests --- .eslintrc.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 0536a49192e..d33541efab5 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -39,6 +39,12 @@ module.exports = { version: '>=16', }, ], + 'n/no-unsupported-features/es-builtins': [ + 'error', + { + version: '>=16', + }, + ], 'n/no-unsupported-features/es-syntax': [ 'error', {