Disable all rules ESLint

Code snippets, JavaScript

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.

Say something interesting

Please link to code from an external resource, like gist.github.com.