ts-repo-utils
    Preparing search index...

    Function formatUncommittedFiles

    • Format only files that have been changed (git status)

      Parameters

      • Optionaloptions: Readonly<
            {
                ignore?: false
                | ((filePath: string) => boolean);
                ignoreUnknown?: boolean;
                modified?: boolean;
                silent?: boolean;
                staged?: boolean;
                untracked?: boolean;
            },
        >

        Options for formatting

      Returns Promise<
          Result<
              undefined,
              ExecException
              | readonly unknown[]
              | Readonly<{ message: string }>,
          >,
      >