diff --git a/src/helpers/color.js b/src/helpers/color.js index c095e061..51219ed7 100644 --- a/src/helpers/color.js +++ b/src/helpers/color.js @@ -74,5 +74,6 @@ export const red = { export const isvalidColorString = (string, type) => { const stringWithoutDegree = string.replace('°', '') + // eslint-disable-next-line no-underscore-dangle return tinycolor(`${ type } (${ stringWithoutDegree })`)._ok }