N
N
Norton_bike2021-11-05 13:54:47
JavaScript
Norton_bike, 2021-11-05 13:54:47

Eslint gives error Assignment to property of function parameter 'element' no-param-reassign?

Eslint gives the error Assignment to property of function parameter 'element' no-param-reassign, how can I fix the code without touching the rules of Eslint itself, what would it accept.

container.querySelectorAll('[data-title]').forEach((element) => {
        element.closest('[data-card]').style.display = element.innerText.toLowerCase().includes(val)
            ? 'block'
            : 'none';
    });

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Aetae, 2021-11-05
@Robert_Norton

As usual: // eslint-disable-next-line no-param-reassign
But if you want it to be beautiful, you need to agree on the project that the argument with the name elementwill always be a dom element and add it to the rule
ignorePropertyModificationsFor: ['element']

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question