Fix useGate lint rule (#3486)
parent
4e51772003
commit
491116ca66
|
@ -18,14 +18,13 @@ exports.create = function create(context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const source = node.parent.source.value
|
const source = node.parent.source.value
|
||||||
if (source.startsWith('.') || source.startsWith('#')) {
|
if (source.startsWith('statsig') || source.startsWith('@statsig')) {
|
||||||
return
|
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.",
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue