ace-linters 2.1.2 → 2.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/build/ace-language-client.d.ts +1 -2
- package/build/ace-language-client.js +5428 -5953
- package/build/ace-linters.d.ts +1 -2
- package/build/ace-linters.js +5428 -5959
- package/build/json-service.js +2 -2
- package/build/yaml-service.js +18856 -20092
- package/package.json +3 -2
package/build/ace-linters.d.ts
CHANGED
|
@@ -484,7 +484,6 @@ export interface CssServiceOptions extends ServiceOptionsWithErrorMessages {
|
|
|
484
484
|
}
|
|
485
485
|
export interface ServiceOptionsMap {
|
|
486
486
|
json: JsonServiceOptions;
|
|
487
|
-
json5: JsonServiceOptions;
|
|
488
487
|
typescript: TsServiceOptions;
|
|
489
488
|
html: HtmlServiceOptions;
|
|
490
489
|
yaml: YamlServiceOptions;
|
|
@@ -502,7 +501,7 @@ export interface ServiceOptionsMap {
|
|
|
502
501
|
lua: LuaServiceOptions;
|
|
503
502
|
[serviceName: string]: any;
|
|
504
503
|
}
|
|
505
|
-
export type SupportedServices = "json" | "
|
|
504
|
+
export type SupportedServices = "json" | "typescript" | "css" | "html" | "yaml" | "php" | "xml" | /** @deprecated would be removed in next iterations */ "javascript" | "eslint" | "lua" | "less" | "scss" | "python";
|
|
506
505
|
/** Options for the completer coming from the LSP server */
|
|
507
506
|
export interface LspCompleterOptions {
|
|
508
507
|
triggerCharacters: TriggerCharacterOptions;
|