From 336496d4a43fbb3fdb62ae18a58bcccd28b95f27 Mon Sep 17 00:00:00 2001 From: Sebastian Werner Date: Wed, 4 Dec 2024 18:49:44 +0100 Subject: [PATCH] fix: mr feedback --- tests/src/rules/no-unlocalized-strings.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/src/rules/no-unlocalized-strings.test.ts b/tests/src/rules/no-unlocalized-strings.test.ts index bc126f4..e944ae3 100644 --- a/tests/src/rules/no-unlocalized-strings.test.ts +++ b/tests/src/rules/no-unlocalized-strings.test.ts @@ -199,6 +199,7 @@ ruleTester.run(name, rule, { options: [{ ignoreNames: ['displayName'] }], }, { + name: 'Respect the name of the parameter when a default is applied', code: 'function Input({ intent = "none"}) {}', options: [{ ignoreNames: ['intent'] }], },