https://github.com/angular/angular
Raw File
Tip revision: 7919982063e7638ffabe2127d4803bb930c791bc authored by Andrew Scott on 10 July 2024, 23:23:46 UTC
feat(core): Add whenStable helper on ApplicationRef (#57190)
Tip revision: 7919982
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