eslint问题

Expected parentheses around arrow function argument having a body with curly braces

  • 带花括号body的箭头函数参数周围,需要一个括号
  • 方法尝试很多,按照eslint官网
  • http://eslint.cn/docs/4.0.0/rules/arrow-parens
  • 在.eslintrc.js中的rules里写入
  • 'arrow-parens': 'off',(关闭圆括号)

 

Unexpected string concatenation

 

 

意外的字符串连接

  • 在.eslintrc.js中的rules里写入
  • 'prefer-template': 'off'

 

eslint真的是个麻烦的东西,但是确实好,javascript红宝书作者开发的,能不好吗。

 

 

 

 

 

 

 

你可能感兴趣的:(front-end-vue,software,testing)