Complete residential site build with Docker Compose & Gitea Actions deployment

This commit is contained in:
CalebLewallen
2026-05-13 17:31:20 -04:00
parent f9c4e13a50
commit 3c22823f72
19354 changed files with 2097331 additions and 0 deletions
@@ -0,0 +1,47 @@
import { TextDocument } from 'vscode-languageserver-textdocument';
import { Hover, Position } from 'vscode-languageserver-types';
import { Telemetry } from '../telemetry';
import { LanguageSettings } from '../yamlLanguageService';
import { YAMLSchemaService } from './yamlSchemaService';
export declare class YAMLHover {
private readonly telemetry?;
private shouldHover;
private shouldHoverAnchor;
private indentation;
private schemaService;
constructor(schemaService: YAMLSchemaService, telemetry?: Telemetry);
configure(languageSettings: LanguageSettings): void;
doHover(document: TextDocument, position: Position, isKubernetes?: boolean): Promise<Hover | null>;
private getHover;
/**
* Resolves merge keys (<<) and anchors recursively in an object node
* @param node The object AST node to resolve
* @param doc The YAML document for resolving anchors
* @param currentRecursionLevel Current recursion level (default: 0)
* @returns A plain JavaScript object with all merges resolved
*/
private resolveMergeKeys;
/**
* Resolves a merge value (which might be an alias) and recursively resolves its merge keys
* @param node The AST node that might be an alias or object
* @param doc The YAML document for resolving anchors
* @param currentRecursionLevel Current recursion level
* @returns The resolved value
*/
private resolveMergeValue;
/**
* Converts an AST node to a plain JavaScript value
* @param node The AST node to convert
* @param doc The YAML document for resolving anchors
* @param currentRecursionLevel Current recursion level
* @returns The converted value
*/
private astNodeToValue;
/**
* Converts a YAML Node to a plain JavaScript value
* @param node The YAML node to convert
* @returns The converted value
*/
private nodeToValue;
private toMarkdown;
}