https://github.com/angular/angular
Raw File
Tip revision: 6f1c941dfec8cf0ea0ccbb0fda76f3d960fd843b authored by Andrew Kushnir on 09 March 2022, 16:53:23 UTC
release: cut the v13.2.6 release (#45299)
Tip revision: 6f1c941
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