添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

将需要忽略的代码块用注释包裹起来

/* eslint-disable no-alert, no-console */alert('foo');

console.log('bar');/* eslint-enable no-alert, no-console */

对指定行禁用规则警告

有两种形式

alert('foo');// eslint-disable-line// eslint-disable-next-linealert('foo');