我使用Visual Studio代码。我从来不想在CSS属性后面加上分号。但是VS Code给了我一个我不喜欢的自动完成选项。我怎样才能停止自动完成分号在年底的CSS属性?
ht4b089n1#
// Insert semicolon at end of line when completing CSS properties "scss.completion.completePropertyWithSemicolon": false,
字符串From:https://code.visualstudio.com/docs/getstarted/settings
a14dhokn2#
1.在VSCode中按下Control + Shift + P。1.搜索Preferences: Open Settings (UI)。1.再次在搜索栏中搜索Semicolon。1.选择CSS或您想要删除自动分号的首选语言。1.取消勾选Insert semicolon at the end of line when completing CSS properties。你完了。
Preferences: Open Settings (UI)
Semicolon
Insert semicolon at the end of line when completing CSS properties
e4yzc0pl3#
在Settings中,转到Extensions-> CSS并取消选中“完成:分号的完全性质
Settings
Extensions
CSS
kqqjbcuj4#
在项目根目录中添加.prettierrc文件对我来说是有效的,设置如下:
{ "files": [ "**/*.css" ], "options": { "semi": false, "parser": "css" } }
字符串
4条答案
按热度按时间ht4b089n1#
或者是
1.可以在设置编辑器中更改默认值。
搜索代码并将其从true更改为false。
字符串
From:https://code.visualstudio.com/docs/getstarted/settings
a14dhokn2#
1.在VSCode中按下Control + Shift + P。
1.搜索
Preferences: Open Settings (UI)
。1.再次在搜索栏中搜索
Semicolon
。1.选择CSS或您想要删除自动分号的首选语言。
1.取消勾选
Insert semicolon at the end of line when completing CSS properties
。你完了。
e4yzc0pl3#
在
Settings
中,转到Extensions
->CSS
并取消选中“完成:分号的完全性质kqqjbcuj4#
在项目根目录中添加.prettierrc文件对我来说是有效的,设置如下:
字符串