webstorm进行可视化学习

webstorm软件显示var used instead of let or const 语法提示警告,
如何将这个语法提示屏蔽掉,
希望能给出详细的步骤,非常感谢~

图片说明

你这里设置的是ES2016(ES6)吧,ES6规范建议用let和const来定义变量,var是ES5以及之前的规范。所以会有warning。具体的差别你可以看看这篇文章:
https://segmentfault.com/a/1190000004365693

图片说明
这里的提示怎么去掉,需要更改哪里呀

打开设置,搜索这个 Both let and const are block-scoped and behave more strictly
把勾去掉图片说明