Answer the question
In order to leave comments, you need to log in
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
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 element
will always be a dom element and add it to the rule
ignorePropertyModificationsFor: ['element']
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question