Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6c408e1

Browse files
author
Brian Staman Ogilvie
committedNov 18, 2022
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

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.