Upgrade prettier

This commit is contained in:
Stéphan Kochen
2023-10-29 13:39:57 +01:00
parent 10d226f780
commit a1ab08efae
8 changed files with 52 additions and 52 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ export const upperCamelize = (name: string) =>
export const indent = (
prefix: string,
text: string,
includeEmptyLines = false
includeEmptyLines = false,
): string =>
text
.split("\n")
@@ -41,7 +41,7 @@ export const indent = (
*/
export const renderTmpl = (
tmpl: string,
vars: { [name: string]: string | boolean }
vars: { [name: string]: string | boolean },
): string => {
let result = tmpl;
for (const [name, value] of Object.entries(vars)) {