how to turn off eslint code example
Example 1: disable console log alert eslint
/* eslint-disable no-debugger, no-console */
console.log('test')
Example 2: disable console log alert eslint
alert('test') // eslint-disable-line no-alert
Example 3: disable eslint
/* eslint-disable */
//Put this comment ath the top of the file