https://github.com/angular/angular
Raw File
Tip revision: 2ea541f4f8af499ad85f84a1c6c11d827e860cab authored by Dylan Hunn on 20 April 2022, 21:29:50 UTC
release: cut the v13.3.4 release (#45702)
Tip revision: 2ea541f
commit-message.ts
import {CommitMessageConfig} from '@angular/dev-infra-private/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',
    'docs-infra',
    'elements',
    'forms',
    'http',
    'language-service',
    'localize',
    'migrations',
    'ngcc',
    'packaging',
    'platform-browser',
    'platform-browser-dynamic',
    'platform-server',
    'platform-webworker',
    'platform-webworker-dynamic',
    'router',
    'service-worker',
    'upgrade',
    've',
    'zone.js',
  ],
};
back to top