chore: Update lint dependencies

This commit is contained in:
Joachim Van Herwegen
2024-07-18 11:03:30 +02:00
parent d1282f6b1a
commit ecd031e69f
37 changed files with 3049 additions and 2931 deletions

View File

@@ -20,7 +20,7 @@ import { readFile, writeFile } from 'fs-extra';
* @returns Promise with output string
*/
async function capitalizeListEntries(input: string): Promise<string> {
return input.replaceAll(/^(\W*\* [a-z])/gmu, (match): string => match.toUpperCase());
return input.replaceAll(/^\W*\* [a-z]/gmu, (match): string => match.toUpperCase());
}
/**