If you need to mute/disable ESLint for particular file only, put this as a first line in that file

/* eslint-disable */

Another rule to override (if needed), but for whole project this time:

In your .eslintrc.js:

rules: {
        'no-console': 'off',
    },