Update with new less and scss settings

This commit is contained in:
Greg Van Liew 2019-10-03 08:42:44 -07:00
Родитель 53f53064cd
Коммит 8b127f857d
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -1541,6 +1541,12 @@ Below are the Visual Studio Code default settings and their values. You can also
// LESS
// Insert semicolon at end of line when completing CSS properties
"less.completion.completePropertyWithSemicolon": true,
// By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.
"less.completion.triggerPropertyValueCompletion": true,
// Invalid number of parameters.
"less.lint.argumentsInColorFunction": "error",
@ -1603,6 +1609,12 @@ Below are the Visual Studio Code default settings and their values. You can also
// SCSS (Sass)
// Insert semicolon at end of line when completing CSS properties
"scss.completion.completePropertyWithSemicolon": true,
// By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.
"scss.completion.triggerPropertyValueCompletion": true,
// Invalid number of parameters.
"scss.lint.argumentsInColorFunction": "error",