microsoft/typespec

Public

mirrored fromhttps://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e26e7826068edd7ad2659a4a2ea74397dcdd1ea6

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

eng/scripts/format.js

10lines · modecode

1// @ts-check
2import {
3 ensureDotnetVersion,
4 runDotnetFormat,
5} from "../../packages/internal-build-utils/dist/src/index.js";
6import { runPrettier } from "./helpers.js";
7runPrettier("--write");
8
9await ensureDotnetVersion({ exitWithSuccessInDevBuilds: true });
10await runDotnetFormat();
11