Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit 56840fc

Browse files
committed
fix eslint warnings
1 parent a013526 commit 56840fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vueTransform.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,12 @@ async function processStyle (styles, id, content, options) {
164164
return outputs
165165
}
166166

167-
function checkIfTemplateContainsMoreElements(node) {
167+
function checkIfTemplateContainsMoreElements (node) {
168168
let count = 0
169169

170-
node.content.childNodes.forEach(( node ) => {
171-
//filter text/comment node
172-
if ( node.nodeName.indexOf('#') === -1 ) {
170+
node.content.childNodes.forEach((node) => {
171+
// filter text/comment node
172+
if (node.nodeName.indexOf('#') === -1) {
173173
count++
174174
}
175175
})

0 commit comments

Comments
 (0)