vscode中增加分号
问题描述
在vscode中写js的时候,每次都要写分号
解决方法
在插件中找到Prettier - Code formatter
并安装,然后在工程的目录新建文件.prettierrc
,比如我的项目目录是node-learn
,则在在node-lean
下新建.prettierrc
,简单配置:
//快捷键:ctrl+shift+F
{
"eslintIntegration": true,
"stylelintIntegration": true,
"tabWidth": 4,
"singleQuote": true,
"semi": true //如果为false,则格式化后,所有的都不加;
}