Revision 89dfb24b3a2a4434c8db17e6958335518dfabe85 authored by Joey Perrott on 23 April 2024, 15:25:05 UTC, committed by Andrew Kushnir on 29 April 2024, 17:25:45 UTC
Migrate formatting to prettier for compiler-cli from clang-format

PR Close #55485
1 parent 9d89898
Raw File
github.mts
import {GithubConfig} from '@angular/ng-dev';

/**
 * Github configuration for the `ng-dev` command. This repository is used as
 * remote for the merge script and other utilities like `ng-dev pr rebase`.
 */
export const github: GithubConfig = {
  owner: 'angular',
  name: 'angular',
  mainBranchName: 'main',
  useNgDevAuthService: true,
};
back to top