Answers for "disables eslint file"

5

disable eslint whole file

//add this block comment in the first line
//it must be a BLOCK comment!!!

/* eslint-disable */
Posted by: Guest on February-06-2021
20

disable eslint for line

alert('foo'); // eslint-disable-line

// eslint-disable-next-line
alert('foo');
Posted by: Guest on May-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language