From 89e06ff02895a47848cb8aedacc35d6c2dda7b1d Mon Sep 17 00:00:00 2001 From: Trang Le Date: Fri, 5 Jul 2024 15:43:52 +0700 Subject: [PATCH] add linting filter for e2e tests --- .eslintrc.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 9ffe89d7f..ef5bc1258 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -64,7 +64,11 @@ "selector": "default", "format": ["camelCase", "snake_case", "UPPER_CASE", "PascalCase"], "leadingUnderscore": "allowSingleOrDouble", - "trailingUnderscore": "allow" + "trailingUnderscore": "allow", + "filter": { + "regex": "(should)|@tags", + "match": false + } }, { "selector": "variable",