mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
17 lines
815 B
TypeScript
17 lines
815 B
TypeScript
import conventional from '@commitlint/config-conventional';
|
|
import { UserConfig } from '@commitlint/types';
|
|
|
|
const isCi = process.env.CI === 'true';
|
|
|
|
const config: UserConfig = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [2, 'always', [...conventional.rules['type-enum'][2], 'api', 'release']],
|
|
'scope-enum': [2, 'always', ['connector', 'console', 'core', 'demo-app', 'test', 'phrases', 'schemas', 'shared', 'experience', 'experience-legacy', 'deps', 'deps-dev', 'cli', 'toolkit', 'cloud', 'app-insights', 'elements', 'translate', 'tunnel', 'account-elements']],
|
|
// Slightly increase the tolerance to allow the appending PR number
|
|
...(isCi && { 'header-max-length': [2, 'always', 110] }),
|
|
'body-max-line-length': [2, 'always', 110],
|
|
},
|
|
};
|
|
|
|
export default config;
|