This commit is contained in:
Alex
2023-11-13 18:23:25 -05:00
parent 60b1b8fde3
commit a022050ab4
9 changed files with 518 additions and 408 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 069596d7..c155e777 100644
index 2fc127b1..64d093b8 100644
--- a/lib/rules/no-unknown-property.js
+++ b/lib/rules/no-unknown-property.js
@@ -539,7 +539,7 @@ module.exports = {
@@ -540,7 +540,7 @@ module.exports = {
create(context) {
function getIgnoreConfig() {
@ -249,7 +249,7 @@ index 069596d7..c155e777 100644
}
function getRequireDataLowercase() {
@@ -552,7 +552,7 @@ module.exports = {
@@ -553,7 +553,7 @@ module.exports = {
JSXAttribute(node) {
const ignoreNames = getIgnoreConfig();
const actualName = context.getSourceCode().getText(node.name);
@ -258,7 +258,7 @@ index 069596d7..c155e777 100644
return;
}
const name = normalizeAttributeCase(actualName);
@@ -580,6 +580,15 @@ module.exports = {
@@ -581,6 +581,15 @@ module.exports = {
const tagName = getTagName(node);