@html-eslint/eslint-plugin
Advanced tools
Comparing version 0.28.0-alpha.3 to 0.28.0
@@ -139,3 +139,3 @@ /** | ||
// @ts-ignore | ||
node.quasi.loc.start.line, | ||
node.loc.start.line, | ||
getTemplateTokens(tokens) | ||
@@ -142,0 +142,0 @@ ); |
@@ -56,3 +56,3 @@ /** | ||
function isRangesOverlap(rangeA, rangeB) { | ||
return rangeA[0] < rangeB[1] && rangeB[0] < rangeB[1]; | ||
return rangeA[0] < rangeB[1] && rangeB[0] < rangeA[1]; | ||
} | ||
@@ -59,0 +59,0 @@ |
{ | ||
"name": "@html-eslint/eslint-plugin", | ||
"version": "0.28.0-alpha.3", | ||
"version": "0.28.0", | ||
"description": "ESLint plugin for html", | ||
@@ -48,6 +48,6 @@ "author": "yeonjuan", | ||
"dependencies": { | ||
"@html-eslint/template-parser": "^0.28.0-alpha.3" | ||
"@html-eslint/template-parser": "^0.28.0" | ||
}, | ||
"devDependencies": { | ||
"@html-eslint/parser": "^0.28.0-alpha.3", | ||
"@html-eslint/parser": "^0.28.0", | ||
"@html-eslint/template-parser": "^0.27.0", | ||
@@ -60,3 +60,3 @@ "@types/eslint": "^9.6.1", | ||
}, | ||
"gitHead": "f94af0cb0051ad0fee168721e1be457dc7475535" | ||
"gitHead": "23e267ca3941b67f73b7a5751bdd24d2e8dbdfc8" | ||
} |
179944