turn off eslint code example
Example 1: eslint ignore file rule
/* eslint-disable no-alert, no-console */
alert('foo');
console.log('bar');
/* eslint-enable no-alert, no-console */
Example 2: disable eslint
/* eslint-disable */
//Put this comment ath the top of the file