添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
风度翩翩的镜子  ·  ESLint: Package ...·  1 月前    · 
精明的显示器  ·  Refactor this ...·  1 月前    · 
豪爽的麦片  ·  Out of date ...·  3 周前    · 
个性的骆驼  ·  8 Helpful Keyboard ...·  4 月前    · 
深沉的书包  ·  mysql ...·  7 月前    · 

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

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