[css] Align formatter setting names. Fixes #145705

This commit is contained in:
Martin Aeschlimann
2022-03-23 18:26:26 +01:00
parent b4914124f1
commit 57b812582d
7 changed files with 21 additions and 21 deletions

View File

@@ -29,12 +29,12 @@ interface FormatterRegistration {
}
interface CSSFormatSettings {
selectorSeparatorNewline?: boolean;
newlineBetweenSelectors?: boolean;
newlineBetweenRules?: boolean;
spaceAroundSelectorSeparator?: boolean;
}
const cssFormatSettingKeys: (keyof CSSFormatSettings)[] = ['selectorSeparatorNewline', 'newlineBetweenRules', 'spaceAroundSelectorSeparator'];
const cssFormatSettingKeys: (keyof CSSFormatSettings)[] = ['newlineBetweenSelectors', 'newlineBetweenRules', 'spaceAroundSelectorSeparator'];
export function startClient(context: ExtensionContext, newLanguageClient: LanguageClientConstructor, runtime: Runtime) {