Answers for "disable eslint in workspace"

6

disable eslint whole file

//add this block comment in the first line
//it must be a BLOCK comment!!!

/* eslint-disable */
Posted by: Guest on February-06-2021
0

disable eslint directory

// to disable the whole folder or multiple files,
// you can create a file .eslintignore
// and fill it similarly to .gitignore
Posted by: Guest on February-06-2021

Browse Popular Code Answers by Language