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

Commit 166c874

Browse files
author
Jonathan Spruance (Insight Global)
committed
Some lint fixes
1 parent 1329bb7 commit 166c874

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/chatdown/src/commands/chatdown.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,16 +92,16 @@ export default class Chatdown extends Command {
9292
}
9393
}
9494

95-
private getFiles (directoryPath: any) {
95+
private getFiles(directoryPath: any) {
9696
return new Promise((resolve, reject) => {
97-
let fileList: any = [];
97+
let fileList: any = []
9898
fs.readdir(directoryPath, (err: any, files: any) => {
9999
if (err) {
100100
reject('Error scanning directory' + err)
101101
}
102102
fileList = files.map((file: any) => path.join(directoryPath, file))
103103
resolve(fileList)
104-
});
104+
})
105105
})
106106
}
107107

0 commit comments

Comments
 (0)