This commit is contained in:
Alex
2024-03-14 22:31:04 -04:00
parent 4c67de9f72
commit 19b07691fc
6 changed files with 192 additions and 173 deletions

View File

@ -237,10 +237,10 @@ index 64bbc8d5..b5e9c803 100644
const isCreateElement = require('../util/isCreateElement');
const report = require('../util/report');
diff --git a/lib/rules/no-unknown-property.js b/lib/rules/no-unknown-property.js
index ec913e1f..d4ec6688 100644
index 781e5495..73cc5eb3 100644
--- a/lib/rules/no-unknown-property.js
+++ b/lib/rules/no-unknown-property.js
@@ -541,7 +541,7 @@ module.exports = {
@@ -543,7 +543,7 @@ module.exports = {
create(context) {
function getIgnoreConfig() {
@ -249,7 +249,7 @@ index ec913e1f..d4ec6688 100644
}
function getRequireDataLowercase() {
@@ -554,7 +554,7 @@ module.exports = {
@@ -556,7 +556,7 @@ module.exports = {
JSXAttribute(node) {
const ignoreNames = getIgnoreConfig();
const actualName = context.getSourceCode().getText(node.name);
@ -258,7 +258,7 @@ index ec913e1f..d4ec6688 100644
return;
}
const name = normalizeAttributeCase(actualName);
@@ -582,6 +582,15 @@ module.exports = {
@@ -584,6 +584,15 @@ module.exports = {
const tagName = getTagName(node);