Enabled @typescript-eslint/no-base-to-string eslint rule again

This commit is contained in:
Alejandro Celaya
2021-02-28 18:22:44 +01:00
parent 1fe76500e8
commit ad0a889548
2 changed files with 2 additions and 3 deletions

View File

@@ -26,5 +26,5 @@ export const renderDoughnutChartLabel = (
&& datasets?.[datasetIndex]?.data?.[index]
|| '';
return `${datasetLabel}: ${prettify(Number(value))}`;
return `${datasetLabel}: ${prettify(Number(value))}`; // eslint-disable-line @typescript-eslint/no-base-to-string
};