Visual Studioコード(1.6.1)とそのjshint拡張子(0.10.15)を使用しています。VSCodeでテンプレート文字列を使用するときのjshintエラー
私のようないくつかのテンプレート文字列を入力する場合:
console.log(`My name is: ${name}`);
VSCodeが赤でそれを強調し、こう述べています。
[jshint] Unexpected '`'. (E024)
そして残りのコードのような偽のエラーの数十を示す開始します。
[jshint] Expected an identifier and instead saw 'if'. (E030)
[jshint] Expected an operator and instead saw '('. (E030)
[jshint] Expected an assignment or function call and instead saw an expression. (W030)
私はドキュメントを調べましたが、この問題は何も参照していません。
誰でもこの回避策を考え出しますか?
ええ、あなたが 'ES6'..jshintを使用しているので、まだ' ES6'をサポートしていないので、有効な 'ES6'構文を認識できません。 – Hackerman
はい、 "esversion":6'もオプションですか? – josemigallas
ここで答えを確認してみてください:http://stackoverflow.com/questions/29953293/is-there-a-way-to-turn-on-es6-es7-syntax-support-in-vscode – Hackerman