You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
3.4 KiB
TypeScript
90 lines
3.4 KiB
TypeScript
9 years ago
|
/*---------------------------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
*--------------------------------------------------------------------------------------------*/
|
||
4 years ago
|
|
||
|
/// <reference path="node_modules/monaco-editor-core/monaco.d.ts" />
|
||
|
|
||
|
declare namespace monaco.languages.css {
|
||
8 years ago
|
export interface DiagnosticsOptions {
|
||
8 years ago
|
readonly validate?: boolean;
|
||
|
readonly lint?: {
|
||
4 years ago
|
readonly compatibleVendorPrefixes?: 'ignore' | 'warning' | 'error';
|
||
|
readonly vendorPrefix?: 'ignore' | 'warning' | 'error';
|
||
|
readonly duplicateProperties?: 'ignore' | 'warning' | 'error';
|
||
|
readonly emptyRules?: 'ignore' | 'warning' | 'error';
|
||
|
readonly importStatement?: 'ignore' | 'warning' | 'error';
|
||
|
readonly boxModel?: 'ignore' | 'warning' | 'error';
|
||
|
readonly universalSelector?: 'ignore' | 'warning' | 'error';
|
||
|
readonly zeroUnits?: 'ignore' | 'warning' | 'error';
|
||
|
readonly fontFaceProperties?: 'ignore' | 'warning' | 'error';
|
||
|
readonly hexColorLength?: 'ignore' | 'warning' | 'error';
|
||
|
readonly argumentsInColorFunction?: 'ignore' | 'warning' | 'error';
|
||
|
readonly unknownProperties?: 'ignore' | 'warning' | 'error';
|
||
|
readonly ieHack?: 'ignore' | 'warning' | 'error';
|
||
|
readonly unknownVendorSpecificProperties?: 'ignore' | 'warning' | 'error';
|
||
|
readonly propertyIgnoredDueToDisplay?: 'ignore' | 'warning' | 'error';
|
||
|
readonly important?: 'ignore' | 'warning' | 'error';
|
||
|
readonly float?: 'ignore' | 'warning' | 'error';
|
||
|
readonly idSelector?: 'ignore' | 'warning' | 'error';
|
||
|
};
|
||
8 years ago
|
}
|
||
5 years ago
|
export interface ModeConfiguration {
|
||
|
/**
|
||
|
* Defines whether the built-in completionItemProvider is enabled.
|
||
|
*/
|
||
|
readonly completionItems?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in hoverProvider is enabled.
|
||
|
*/
|
||
|
readonly hovers?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in documentSymbolProvider is enabled.
|
||
|
*/
|
||
|
readonly documentSymbols?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in definitions provider is enabled.
|
||
|
*/
|
||
|
readonly definitions?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in references provider is enabled.
|
||
|
*/
|
||
|
readonly references?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in references provider is enabled.
|
||
|
*/
|
||
|
readonly documentHighlights?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in rename provider is enabled.
|
||
|
*/
|
||
|
readonly rename?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in color provider is enabled.
|
||
|
*/
|
||
|
readonly colors?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in foldingRange provider is enabled.
|
||
|
*/
|
||
|
readonly foldingRanges?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in diagnostic provider is enabled.
|
||
|
*/
|
||
|
readonly diagnostics?: boolean;
|
||
|
/**
|
||
|
* Defines whether the built-in selection range provider is enabled.
|
||
|
*/
|
||
|
readonly selectionRanges?: boolean;
|
||
|
}
|
||
8 years ago
|
export interface LanguageServiceDefaults {
|
||
4 years ago
|
readonly languageId: string;
|
||
8 years ago
|
readonly onDidChange: IEvent<LanguageServiceDefaults>;
|
||
|
readonly diagnosticsOptions: DiagnosticsOptions;
|
||
5 years ago
|
readonly modeConfiguration: ModeConfiguration;
|
||
8 years ago
|
setDiagnosticsOptions(options: DiagnosticsOptions): void;
|
||
5 years ago
|
setModeConfiguration(modeConfiguration: ModeConfiguration): void;
|
||
8 years ago
|
}
|
||
4 years ago
|
export const cssDefaults: LanguageServiceDefaults;
|
||
|
export const scssDefaults: LanguageServiceDefaults;
|
||
|
export const lessDefaults: LanguageServiceDefaults;
|
||
|
}
|