refactor: 🚨 Use shortand property syntax for object literals

This commit is contained in:
Jesse Wierzbinski 2024-10-03 13:41:58 +02:00
parent 48ffe97849
commit 3fade63567
No known key found for this signature in database
15 changed files with 31 additions and 31 deletions

View file

@ -144,7 +144,7 @@ export const nodeDriver: RotatingFileSinkDriver<number> = {
}
return statSync(path);
},
renameSync: renameSync,
renameSync,
};
export const configureLoggers = (silent = false) =>

View file

@ -26,7 +26,7 @@ export const renderMarkdownInPath = async (
}
return {
content: content,
content,
lastModified,
};
};