This commit is contained in:
Alex
2023-12-20 12:23:05 -05:00
parent 02fe9f4799
commit 3ec7c342ba
18 changed files with 1732 additions and 700 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 2fc127b1..64d093b8 100644
index 2e77f289..cff14d45 100644
--- a/lib/rules/no-unknown-property.js
+++ b/lib/rules/no-unknown-property.js
@@ -540,7 +540,7 @@ module.exports = {
@@ -541,7 +541,7 @@ module.exports = {
create(context) {
function getIgnoreConfig() {
@ -249,7 +249,7 @@ index 2fc127b1..64d093b8 100644
}
function getRequireDataLowercase() {
@@ -553,7 +553,7 @@ module.exports = {
@@ -554,7 +554,7 @@ module.exports = {
JSXAttribute(node) {
const ignoreNames = getIgnoreConfig();
const actualName = context.getSourceCode().getText(node.name);
@ -258,7 +258,7 @@ index 2fc127b1..64d093b8 100644
return;
}
const name = normalizeAttributeCase(actualName);
@@ -581,6 +581,15 @@ module.exports = {
@@ -582,6 +582,15 @@ module.exports = {
const tagName = getTagName(node);