Disable all rules ESLint
ESLint can ignore specific files and directories by creating an .eslintignore
text file (where each line is a glob pattern) in your project’s root directory. This notifies ESLints the paths that should be omitted from linting.
For example, the following will omit all JavaScript files, and thus turn off/disable ESLint entirely.
**/*.js
You cannot disable rules of ESlint in the .eslintrc
file.