https://github.com/angular/angular
Raw File
Tip revision: 70e8b40750e894bc1439713cd508d8bd9fafb7a4 authored by Andrew Scott on 25 July 2024, 19:40:38 UTC
fix(zone.js): Update the default behavior of fakeAsync to flush after the test (#57240)
Tip revision: 70e8b40
commit-message.mts
import {CommitMessageConfig} from '@angular/ng-dev';

/**
 * The configuration for `ng-dev commit-message` commands.
 */
export const commitMessage: CommitMessageConfig = {
  maxLineLength: Infinity,
  minBodyLength: 20,
  minBodyLengthTypeExcludes: ['docs'],
  scopes: [
    'animations',
    'bazel',
    'benchpress',
    'changelog',
    'common',
    'compiler',
    'compiler-cli',
    'core',
    'dev-infra',
    'devtools',
    'docs-infra',
    'elements',
    'forms',
    'http',
    'language-service',
    'localize',
    'migrations',
    'packaging',
    'platform-browser',
    'platform-browser-dynamic',
    'platform-server',
    'router',
    'service-worker',
    'upgrade',
    've',
    'zone.js',
  ],
};
back to top