css 防止Visual Studio代码中的自动分号

kqhtkvqz  于 2023-08-09  发布在  其他
关注(0)|答案(4)|浏览(142)

我使用Visual Studio代码。我从来不想在CSS属性后面加上分号。但是VS Code给了我一个我不喜欢的自动完成选项。
我怎样才能停止自动完成分号在年底的CSS属性?

ht4b089n

ht4b089n1#

  1. Settings > Extensions > CSS,取消选中Complete Property With Semicolon。
    或者是
    1.可以在设置编辑器中更改默认值。
    搜索代码并将其从true更改为false。
// Insert semicolon at end of line when completing CSS properties
  "scss.completion.completePropertyWithSemicolon": false,

字符串
From:https://code.visualstudio.com/docs/getstarted/settings

a14dhokn

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
你完了。

e4yzc0pl

e4yzc0pl3#

Settings中,转到Extensions-> CSS并取消选中“完成:分号的完全性质

kqqjbcuj

kqqjbcuj4#

在项目根目录中添加.prettierrc文件对我来说是有效的,设置如下:

{
     "files": [
              "**/*.css"
              ],
     "options": {
                "semi": false,
                "parser": "css"
                }
}

字符串

相关问题