From 50ca957192e891afe37a7080a7c6c08ad1d469e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82=C4=99biowski-Owczarek?= Date: Mon, 31 Mar 2025 18:04:51 +0200 Subject: [PATCH] Build: ESLint: Remove the `outerIIFEBody` exception to `indent` It used to be necessary when we still had the `selector` outer IIFE, but that got simplified. Closes gh-5641 --- eslint.config.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 575c93fa4..714f2978a 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -59,13 +59,7 @@ export default [ // ignoreExports: [ "{src/,}*.js" ] // } // ], - indent: [ - "error", - "tab", - { - outerIIFEBody: 0 - } - ], + indent: [ "error", "tab" ], "no-implicit-globals": "error", "no-unused-vars": [ "error",