Skip to content

Commit 4ad2c44

Browse files
authored
add perl extentions (#17)
1 parent b8f547e commit 4ad2c44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export function shouldIgnoreFile(
135135
export function isSupportedFileType(filePath: string): boolean {
136136
const supportedExtensions = [
137137
'.md', '.txt', '.rst',
138-
'.rs', '.py', '.js', '.ts', '.go', '.java', '.cpp', '.c',
138+
'.rs', '.py', '.js', '.ts', '.go', '.java', '.cpp', '.c', '.pl', '.pm',
139139
'.json', '.yaml', '.yml', '.toml', '.csv',
140140
'.env', '.conf', '.ini',
141141
'.html', '.xml'
@@ -156,4 +156,4 @@ export async function readlineSync(prompt: string): Promise<string> {
156156
resolve(answer);
157157
});
158158
});
159-
}
159+
}

0 commit comments

Comments
 (0)