refactor: Bring lint config back to original strictness

This commit is contained in:
Joachim Van Herwegen
2023-10-30 14:32:21 +01:00
parent 7a007dc466
commit 3bb3004abb
52 changed files with 239 additions and 132 deletions

View File

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