Skip to content

Commit 6c408e1

Browse files
author
Brian Staman Ogilvie
committed
do not check fbs nodes for unknown property
1 parent c6d082a commit 6c408e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rules/no-unknown-property.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ module.exports = {
544544

545545
const tagName = getTagName(node);
546546

547-
if (tagName === 'fbt') { return; } // fbt nodes are bonkers, let's not go there
547+
if (tagName === 'fbt' || tagName === 'fbs') { return; } // fbt/fbs nodes are bonkers, let's not go there
548548

549549
if (!isValidHTMLTagInJSX(node)) { return; }
550550

0 commit comments

Comments
 (0)