由于人们可能会想到的许多常见错误(例如使用未定义的变量),我在Java文件的VSCode中没有得到语法突出显示。
我已经安装了ESLint v2.1.5扩展,但是不确定是否缺少某些配置吗?
class Events {
constructor(user) {
if (!userId) {
// the above line will give a "Uncaught ReferenceError: userId is not defined" error
// but VSCode does not warn me with syntax highlighting
}
this.user = user;
}
}