disable eslint next line
By Paula Howe at Feb 05 2021
eslint-disable-next-line multiple
By Creepy Crayfish at Mar 17 2021
const evenOrOdd = (number) => { // TODO: this should return "even" if the number is even, "odd" otherwise if (number % 2 === 0) { return "even"; // eslint-disable-next-line no-else-return } else { return "odd"; } }; in one line
By Bernard Nicolas at Oct 25 2020