2020-07-02 12:08:29 +00:00
|
|
|
/**
|
|
|
|
|
* The configuration for `ng-dev commit-message` commands.
|
2025-11-06 20:56:06 +00:00
|
|
|
*
|
|
|
|
|
* @type { import("@angular/ng-dev").CommitMessageConfig }
|
2020-07-02 12:08:29 +00:00
|
|
|
*/
|
2025-11-06 20:56:06 +00:00
|
|
|
export const commitMessage = {
|
2021-03-10 18:46:24 +00:00
|
|
|
maxLineLength: Infinity,
|
2020-07-02 12:08:29 +00:00
|
|
|
minBodyLength: 20,
|
|
|
|
|
minBodyLengthTypeExcludes: ['docs'],
|
2024-11-21 19:33:41 +00:00
|
|
|
// If you update this, also update the docs.
|
|
|
|
|
// https://github.com/angular/angular/blob/main/contributing-docs/commit-message-guidelines.md#scope
|
2020-07-02 12:08:29 +00:00
|
|
|
scopes: [
|
|
|
|
|
'animations',
|
|
|
|
|
'benchpress',
|
|
|
|
|
'common',
|
|
|
|
|
'compiler',
|
|
|
|
|
'compiler-cli',
|
|
|
|
|
'core',
|
|
|
|
|
'dev-infra',
|
2021-11-24 05:17:41 +00:00
|
|
|
'devtools',
|
2020-07-02 12:08:29 +00:00
|
|
|
'docs-infra',
|
|
|
|
|
'elements',
|
|
|
|
|
'forms',
|
|
|
|
|
'http',
|
|
|
|
|
'language-service',
|
2025-09-10 16:56:37 +00:00
|
|
|
'language-server',
|
2020-07-02 12:08:29 +00:00
|
|
|
'localize',
|
|
|
|
|
'migrations',
|
|
|
|
|
'platform-browser',
|
|
|
|
|
'platform-browser-dynamic',
|
|
|
|
|
'platform-server',
|
|
|
|
|
'router',
|
|
|
|
|
'service-worker',
|
|
|
|
|
'upgrade',
|
2025-09-10 16:56:37 +00:00
|
|
|
'vscode-extension',
|
2020-07-02 12:08:29 +00:00
|
|
|
'zone.js',
|
2022-02-26 20:59:18 +00:00
|
|
|
],
|
2020-07-02 12:08:29 +00:00
|
|
|
};
|