Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMBarr committed Jun 2, 2024
1 parent 0acc891 commit dcd5ff6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/builder.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as builderModel from './builder.model';
import { OpenLyricsBuilder } from '.';
import * as builderModel from './builder.model';

//NOTE:
// This test file will test the `OpenLyricsBuilder` method on the `index.ts` file
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { XMLBuilder, XMLParser } from 'fast-xml-parser';
import { Builder } from './builder';
import { IBuilderOptions } from './builder.model';
import { IBuilderXml } from './builder.xml.model';

import { Parser } from './parser';
import { IParserRoot } from './parser.model';
import { IXmlDocRoot } from './parser.xml.model';
Expand Down
3 changes: 2 additions & 1 deletion src/parser.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { readFileSync } from 'fs';
import * as parserModel from './parser.model';

import { OpenLyricsParser } from '.';
import * as parserModel from './parser.model';

//NOTE:
// This test file will test the `OpenLyricsParser` method on the `index.ts` file
Expand Down
1 change: 1 addition & 0 deletions src/parser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { XMLParser } from 'fast-xml-parser';

import * as parserModel from './parser.model';
import * as xmlModel from './parser.xml.model';

Expand Down

0 comments on commit dcd5ff6

Please sign in to comment.