Updates dockerfile
All checks were successful
Build and Push / build (push) Successful in 55s

This commit is contained in:
2026-02-16 15:09:37 -05:00
parent 8346776f2a
commit d181f77fb2
14943 changed files with 2078509 additions and 16 deletions

26
node_modules/volar-service-prettier/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,26 @@
import type { DocumentSelector, FormattingOptions, ProviderResult, LanguageServiceContext, LanguageServicePlugin, TextDocument } from '@volar/language-service';
import type { Options } from 'prettier';
export declare function create(
/**
* Prettier instance or getter to use.
*/
prettierInstanceOrGetter: typeof import('prettier') | ((context: LanguageServiceContext) => ProviderResult<typeof import('prettier') | undefined>), { html, documentSelector, isFormattingEnabled, getFormattingOptions, }?: {
html?: {
/**
* Preprocessing to break "contents" from "HTML tags".
* This will prevent HTML closing tags, and opening tags without attributes
* from breaking into a blank `>` or `<` on a new line.
*/
breakContentsFromTags?: boolean;
};
/**
* Languages to be formatted by prettier.
*
* @default
* ['html', 'css', 'scss', 'typescript', 'javascript']
*/
documentSelector?: DocumentSelector;
isFormattingEnabled?(prettier: typeof import('prettier'), document: TextDocument, context: LanguageServiceContext): ProviderResult<boolean>;
getFormattingOptions?(prettier: typeof import('prettier'), document: TextDocument, formatOptions: FormattingOptions, context: LanguageServiceContext): ProviderResult<Options>;
}): LanguageServicePlugin;
//# sourceMappingURL=index.d.ts.map