@html-eslint/eslint-plugin
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -95,6 +95,6 @@ /** | ||
if (actualTabs) { | ||
actual += `${indentSize} ${INDENT_TYPES.TAB}`; | ||
actual += `${actualTabs} ${INDENT_TYPES.TAB}`; | ||
} | ||
if (actualSpaces) { | ||
actual += `${actual.length ? ", " : ""} ${indentSize} ${ | ||
actual += `${actual.length ? ", " : ""}${actualSpaces} ${ | ||
INDENT_TYPES.SPACE | ||
@@ -137,2 +137,6 @@ }`; | ||
}); | ||
if (node.parent && node.parent.type === "Pre") { | ||
return; | ||
} | ||
if (node.lineNodes && node.lineNodes.length) { | ||
@@ -139,0 +143,0 @@ if (!node.startTag) { |
{ | ||
"name": "@html-eslint/eslint-plugin", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "ESLint plugin for html", | ||
@@ -30,5 +30,5 @@ "author": "yeonjuan", | ||
"devDependencies": { | ||
"@html-eslint/parser": "^0.4.0" | ||
"@html-eslint/parser": "^0.4.1" | ||
}, | ||
"gitHead": "eef02fe80c18eead290d77b41b38b4281a2599ef" | ||
"gitHead": "0171c6eccb93800af6af3e6988dd5c6bcd0f4958" | ||
} |
29016
1091