From bf86555b83de8e68052f639842f431ab22b0b722 Mon Sep 17 00:00:00 2001 From: Luqmaan Essop Date: Fri, 7 Jun 2024 07:20:30 +0000 Subject: [PATCH] feat(SLB-226): attempt to warn rather thanfail --- packages/ui/.storybook/preview.tsx | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/packages/ui/.storybook/preview.tsx b/packages/ui/.storybook/preview.tsx index 46813ca8e..26d96ce3e 100644 --- a/packages/ui/.storybook/preview.tsx +++ b/packages/ui/.storybook/preview.tsx @@ -81,7 +81,26 @@ export const parameters = { // Setting the enabled option to false will disable checks for this particular rule on all stories. id: 'color-contrast', reviewOnFail: true, - // enabled: false, + }, + { + id: 'link-name', + reviewOnFail: true, + }, + { + id: 'duplicate-id', + reviewOnFail: true, + }, + { + id: 'landmark-no-duplicate-main', + reviewOnFail: true, + }, + { + id: 'landmark-main-is-top-level', + reviewOnFail: true, + }, + { + id: 'landmark-unique', + reviewOnFail: true, }, ], },