We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa97c2 commit 4b6b572Copy full SHA for 4b6b572
src/utils/config.ts
@@ -91,9 +91,9 @@ export const getConfiguration = (): Configuration => {
91
}
92
93
if (typeof mergedConfig.outputFile === "object") {
94
- let reportYear = (new Date().getFullYear()).toString();
+ let reportYear = new Date().getFullYear().toString();
95
if (year) {
96
- reportYear = (year as string);
+ reportYear = year as string;
97
} else if (date) {
98
reportYear = (date as string).split("-")[0];
99
0 commit comments