“Eslintignore” Ответ

Эслинт игнорируется

/* eslint-disable no-alert, no-console */

alert('foo');
console.log('bar');

/* eslint-enable no-alert, no-console */
baruchiro

Эслинт игнорируется

/* eslint-disable */

alert('foo');

/* eslint-enable */
Cloudy Copperhead

Eslintignore

# Same as gitignore
**/*.js
# or
{
    "ignorePatterns": ["**/vendor/*.js"],
}
T-DaMER

Eslint Игнорель Ine

// eslint-disable-next-line no-use-before-define
Zealous Zebra

Эслинт игнорирует

{
    "ignorePatterns": ["temp.js", "**/vendor/*.js"],
    "rules": {
        //...
    }
}
Roz

Смотреть популярные ответы по языку

Смотреть другие языки программирования