From 9b57e52168c35a7ccc2961636120d1499ff4ade2 Mon Sep 17 00:00:00 2001 From: "Adolfo R. Brandes" Date: Sun, 30 Aug 2026 11:18:12 -0300 Subject: [PATCH] fix: warn instead of error on member delimiter style Consumers upgrading to frontend-base shouldn't have their builds broken by a stylistic preference. Co-Authored-By: Claude --- tools/eslint/base.eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/eslint/base.eslint.config.js b/tools/eslint/base.eslint.config.js index b6d65fe7..c965c910 100644 --- a/tools/eslint/base.eslint.config.js +++ b/tools/eslint/base.eslint.config.js @@ -101,7 +101,7 @@ module.exports = tseslint.config( '@stylistic/jsx-one-expression-per-line': 'off', '@stylistic/multiline-ternary': 'off', '@stylistic/brace-style': ['error', '1tbs'], - '@stylistic/member-delimiter-style': ['error', { + '@stylistic/member-delimiter-style': ['warn', { multiline: { delimiter: 'semi', requireLast: true,