admin管理员组文章数量:1347657
I am working on a JavaScript project. Visual Studio Code is my IDE and I see warnings about missing semicolons at the end of lines. The warnings are generated by JSHint. Since having semicolons at the end of lines is optional, I want to get rid of these warnings.
I am working on a JavaScript project. Visual Studio Code is my IDE and I see warnings about missing semicolons at the end of lines. The warnings are generated by JSHint. Since having semicolons at the end of lines is optional, I want to get rid of these warnings.
Share Improve this question asked Sep 3, 2019 at 10:35 AbdollahAbdollah 5,1973 gold badges33 silver badges52 bronze badges1 Answer
Reset to default 11JSHint has an option that suppresses warnings about missing semicolons called asi
. Open VSCode settings (Ctrl + ,), search jshint options
and click on Edit in settings.json
Add the following to settings.json
:
"jshint.options": {
"asi": true
}
If you already have "jsint.options"
in your settings.json
, simply just add "asi": true
inside it.
Note:
You can edit settings.json
for User
or Workspace
. In the image, you see that User
tab (indicated by a red 1) is selected. In this mode, any change in settings.json
affects all VSCode projects. If you want to apply this change only on this project, first select Workspace
tab (indicated by a red 2) and then click on Edit in settings.json
.
本文标签: javascriptIn VSCodeJSHint warns about missing semicolonsStack Overflow
版权声明:本文标题:javascript - In VSCode, JSHint warns about missing semicolons - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743837803a2547728.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论