Skip to content

Commit

Permalink
add exclusion linter
Browse files Browse the repository at this point in the history
  • Loading branch information
meyervp committed Mar 13, 2021
1 parent da751c8 commit 997338c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/includes-labels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 997338c

Please sign in to comment.