disable eslint directory 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
/* eslint-disable */
Example 3: disable eslint
/* eslint-disable */
//Put this comment ath the top of the file
Example 4: disable eslint directory
// to disable the whole folder or multiple files,
// you can create a file .eslintignore
// and fill it similarly to .gitignore