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

Commit 1329bb7

Browse files
author
Jonathan Spruance (Insight Global)
committed
Lint fix
1 parent ab54797 commit 1329bb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/chatdown/src/commands/chatdown.ts

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

95-
private getFiles (directoryPath: any): Promise<any> {
95+
private getFiles (directoryPath: any) {
9696
return new Promise((resolve, reject) => {
9797
let fileList: any = [];
9898
fs.readdir(directoryPath, (err: any, files: any) => {
@@ -112,7 +112,7 @@ export default class Chatdown extends Command {
112112

113113
private async processFiles(inputDir: any, outputDir: any) {
114114
return new Promise(async (resolve, reject) => {
115-
let files: any = [];
115+
let files: any = []
116116
if (inputDir.indexOf('*') > -1) {
117117
files = glob.sync(inputDir, {ignore: ['**/node_modules/**']})
118118
} else {

0 commit comments

Comments
 (0)