mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
fixes #7777: [scss] validation doesn't disable
This commit is contained in:
@@ -43,11 +43,11 @@ export interface LanguageSettings {
|
||||
let cssParser = new Parser();
|
||||
let cssCompletion = new CSSCompletion();
|
||||
let cssHover = new CSSHover();
|
||||
let cssValidation = new CSSValidation();
|
||||
let cssNavigation = new CSSNavigation();
|
||||
let cssCodeActions = new CSSCodeActions();
|
||||
|
||||
export function getCSSLanguageService() : LanguageService {
|
||||
let cssValidation = new CSSValidation(); // an instance per language service
|
||||
return {
|
||||
configure: cssValidation.configure.bind(cssValidation),
|
||||
doValidation: cssValidation.doValidation.bind(cssValidation),
|
||||
|
||||
Reference in New Issue
Block a user