From 997338ceed1796cfa708b9ca3a57139cb1a8b5af Mon Sep 17 00:00:00 2001 From: cibor Date: Sat, 13 Mar 2021 21:42:37 +0100 Subject: [PATCH] add exclusion linter --- src/store/includes-labels.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/includes-labels.ts b/src/store/includes-labels.ts index 73430e4720..2fa07dae6f 100644 --- a/src/store/includes-labels.ts +++ b/src/store/includes-labels.ts @@ -126,7 +126,7 @@ export async function getPrice( if (priceString) { const price = Number.parseFloat( - priceString.replace(/\\.|\\,/g, '').match(/\d+/g)!.join('.') + priceString.replace(/\\.|\\,/g, '').match(/\d+/g)!.join('.') // eslint-disable-line ); logger.debug('received price', price);