alert('foo'); // eslint-disable-line
// eslint-disable-next-line
alert('foo');
/* eslint-disable */
// Block / line of code
/* eslint-enable */
/* eslint-disable */
/* eslint-disable */
/*eslint-disable */
//suppress all warnings between comments
alert('foo');
/*eslint-enable */
/* eslint-disable */
//Put this comment ath the top of the file
// to disable the whole folder or multiple files,
// you can create a file .eslintignore
// and fill it similarly to .gitignore
console.log('eslint is disabled for the current line'); // eslint-disable-line