so i wrote this piece of code for a project but now my ESLinter keeps giving me a no-shadow:no-shadow error on line 26:43 any ideas on how to fix this?
const selectionButtons = document.querySelectorAll('[data-selection]');
const finalColumn = document.querySelector('[data-final-column]');
const computerScoreSpan = document.querySelector('[data-computer-score]');
const yourScoreSpan = document.querySelector('[data-your-score]');
const SELECTIONS = [
{
name: 'rock',
emoji: '✊',
beats: 'scissors',
},
{
name: 'paper',
emoji: '✋',
beats: 'rock',
},
{
name: 'scissors',
emoji: '✌',
beats: 'paper',
},
];
selectionButtons.forEach(selectionButton => {
selectionButton.addEventListener('click', e => {
const selectionNames = selectionButton.dataset.selection;
const selectionchoice = SELECTIONS.find(selection => selection.name === selectionNames);
makeSelection(selectionchoice);
});
});