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.
@@ -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" | "json5" | "typescript" | "css" | "html" | "yaml" | "php" | "xml" | /** @deprecated would be removed in next iterations */ "javascript" | "eslint" | "lua" | "less" | "scss" | "python";
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;