Skip to content

Commit 5166475

Browse files
Linting
1 parent 4847a08 commit 5166475

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const parser = (html: string, options: Options = {}): Node[] => {
128128
if (options.sourceLocations) {
129129
buf.location = {
130130
start: locationTracker.getPosition(parser.startIndex),
131-
end: locationTracker.getPosition(parser.endIndex),
131+
end: locationTracker.getPosition(parser.endIndex)
132132
};
133133
lastOpenTagEndIndex = parser.endIndex;
134134
}

test/test-core.spec.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -308,18 +308,18 @@ test('should parse with source locations', t => {
308308
location: {
309309
start: {
310310
line: 2,
311-
column: 18,
311+
column: 18
312312
},
313313
end: {
314314
line: 2,
315-
column: 21,
316-
},
317-
},
315+
column: 21
316+
}
317+
}
318318
},
319319
{
320320
tag: 'p',
321321
content: [
322-
'Bar\n',
322+
'Bar\n'
323323
],
324324
location: {
325325
start: {
@@ -344,7 +344,7 @@ test('should parse with source locations', t => {
344344
column: 4
345345
}
346346
}
347-
},
347+
}
348348
];
349349
t.deepEqual(tree, expected);
350350
});

0 commit comments

Comments
 (0)