“ESLINTIGNORE” Kod odpowiedzi

Eslint ignoruj

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

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

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

Eslint ignoruj

/* eslint-disable */

alert('foo');

/* eslint-enable */
Cloudy Copperhead

ESLINTIGNORE

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

Eslint ignorel ine

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

Eslint ignoruje

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

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu