添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
呐喊的煎鸡蛋  ·  3.2 ...·  6 月前    · 
谦和的皮带  ·  how to avoid ...·  1 年前    · 

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

/* 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');