From 491116ca66564d9940f32602294ee0d743ea4756 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 11 Apr 2024 23:59:02 +0100 Subject: [PATCH] Fix useGate lint rule (#3486) --- eslint/use-typed-gates.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/eslint/use-typed-gates.js b/eslint/use-typed-gates.js index 3625a7da..6c0331af 100644 --- a/eslint/use-typed-gates.js +++ b/eslint/use-typed-gates.js @@ -18,14 +18,13 @@ exports.create = function create(context) { return } const source = node.parent.source.value - if (source.startsWith('.') || source.startsWith('#')) { - return + if (source.startsWith('statsig') || source.startsWith('@statsig')) { + context.report({ + node, + message: + "Use useGate() from '#/lib/statsig/statsig' instead of the one on npm.", + }) } - context.report({ - node, - message: - "Use useGate() from '#/lib/statsig/statsig' instead of the one on npm.", - }) }, } }