.eslintrc.js


'rules': {
  // allow paren-less arrow functions
  'arrow-parens': 0,
  // allow async-await
  'generator-star-spacing': 0,
  // allow debugger during development
  'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
  'semi':['error','always']

相关文章:

  • 2022-01-28
  • 2021-09-23
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-23
  • 2022-12-23
  • 2021-11-12
  • 2021-05-06
  • 2021-10-06
  • 2021-08-07
  • 2022-12-23
相关资源
相似解决方案