Missing space before function parentheses
问题描述为——函数括号前缺少空格
导致原因主要是,使用eslint时,严格模式下,会报错Missing space before function parentheses的问题,意思是在方法名和刮号之间需要有一格空格
解决方法如下
在根目录中,打开 .eslintrc.js 文件,并在 rules 写入以下代码即可:
"space-before-function-paren": 0
问题描述为——函数括号前缺少空格
导致原因主要是,使用eslint时,严格模式下,会报错Missing space before function parentheses的问题,意思是在方法名和刮号之间需要有一格空格
解决方法如下
在根目录中,打开 .eslintrc.js 文件,并在 rules 写入以下代码即可:
"space-before-function-paren": 0