eslint disable for whole file code example
Example 1: disable eslint whole file
//add this block comment in the first line
//it must be a BLOCK comment!!!
/* eslint-disable */
Example 2: disable eslint for line
alert('foo'); // eslint-disable-line
// eslint-disable-next-line
alert('foo');
Example 3: disable eslint
/* eslint-disable */
Example 4: disable eslint
/* eslint-disable */
//Put this comment ath the top of the file