Skip to content

Commit 5bb6f48

Browse files
author
Shailesh Pachbhai
committed
feat: fix the build error
1 parent bf6ddbf commit 5bb6f48

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/utils/lwcparser/htmlParser/HTMLParser.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ class HTMLParser {
2626
}
2727

2828
// Method to replace custom tags
29-
// eslint-disable-next-line @typescript-eslint/member-ordering
3029
public replaceCustomTag(oldTag: string, newTag: string): void {
3130
this.parser(oldTag).each((_, element) => {
3231
const newElement = this.parser(`<${newTag}></${newTag}>`).html(this.parser(element).html());
@@ -35,7 +34,6 @@ class HTMLParser {
3534
}
3635

3736
// Method to save modified HTML back to a file
38-
// eslint-disable-next-line @typescript-eslint/member-ordering
3937
public saveToFile(outputFilePath: string): void {
4038
try {
4139
const modifiedHtml = this.parser.html();

0 commit comments

Comments
 (0)