UNPKG

@storm-software/k8s-tools

Version:

Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.

14 lines (11 loc) 461 B
import { Tree } from '@nx/devkit'; import { PrettierConfig } from '../types.mjs'; import 'prettier'; /** * Resolves the existing Prettier configuration. * * @returns The Prettier configuration or undefined if not found. */ declare function resolveUserExistingPrettierConfig(): Promise<PrettierConfig | undefined>; declare function addToPrettierIgnore(tree: Tree, ignore: string[]): void; export { addToPrettierIgnore, resolveUserExistingPrettierConfig };