
# Conflicts: # .circleci/config.yml # .github/ISSUE_TEMPLATE/1-bug-report.md # .github/ISSUE_TEMPLATE/2-feature-request.md # .github/ISSUE_TEMPLATE/5-support-request.md # .github/ISSUE_TEMPLATE/6-angular-cli.md # .github/ISSUE_TEMPLATE/7-angular-components.md # .ng-dev/commit-message.ts # CODE_OF_CONDUCT.md # CONTRIBUTING.md # README.md # aio/README.md # aio/content/guide/architecture-modules.md # aio/content/guide/architecture-next-steps.md # aio/content/guide/architecture-services.md # aio/content/guide/architecture.md # aio/content/guide/attribute-binding.md # aio/content/guide/bootstrapping.md # aio/content/guide/glossary.md # aio/content/guide/ngmodules.md # aio/content/guide/template-statements.md # aio/content/marketing/analytics.md # aio/content/marketing/docs.md # aio/content/marketing/events.html # aio/content/navigation.json # aio/content/tutorial/toh-pt4.md # aio/content/tutorial/toh-pt6.md # aio/package.json # aio/src/app/shared/ga.service.spec.ts # aio/src/app/shared/ga.service.ts # aio/src/app/shared/location.service.spec.ts # aio/tests/e2e/src/onerror.e2e-spec.ts # aio/yarn.lock
41 lines
811 B
TypeScript
41 lines
811 B
TypeScript
import {CommitMessageConfig} from '../dev-infra/commit-message/config';
|
|
|
|
/**
|
|
* The configuration for `ng-dev commit-message` commands.
|
|
*/
|
|
export const commitMessage: CommitMessageConfig = {
|
|
maxLineLength: 120,
|
|
minBodyLength: 20,
|
|
minBodyLengthTypeExcludes: ['docs', 'upstream'],
|
|
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',
|
|
]
|
|
};
|