带有Javascript的VSCode中没有语法突出显示

时间:2020-04-21 05:04:48

标签: visual-studio-code syntax-highlighting

由于人们可能会想到的许多常见错误(例如使用未定义的变量),我在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;
  }
}

0 个答案:

没有答案