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

@ -1,5 +1,5 @@
diff --git a/package.json b/package.json
index 510ac18..569cdc0 100644
index 79b79cb..bd8c856 100644
--- a/package.json
+++ b/package.json
@@ -62,8 +62,7 @@
@ -14,13 +14,14 @@ index 510ac18..569cdc0 100644
"debug": "^4.3.4",
diff --git a/tsconfig.json b/tsconfig.json
deleted file mode 100644
index 81e4c05..0000000
index a303861..0000000
--- a/tsconfig.json
+++ /dev/null
@@ -1,7 +0,0 @@
@@ -1,8 +0,0 @@
-{
- "extends": "@1stg/tsconfig/node16",
- "compilerOptions": {
- "module": "Node16",
- "outDir": "./lib"
- },
- "include": ["./src", "./shim.d.ts"]

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);