@halospv3/hce.shared-config
Version:
Automate commit message quality, changelogs, and CI/CD releases. Exports a semantic-release shareable configuration deserialized from this package's '.releaserc.yml'. Shared resources for .NET projects are also distributed with this package.
12 lines • 501 B
TypeScript
import type { RuleConfigSeverity, UserConfig } from '@commitlint/types';
declare const disabled: RuleConfigSeverity.Disabled;
declare const commitlintConfig: UserConfig & {
extends: UserConfig['extends'] | ['@commitlint/config-conventional'];
rules: {
'body-max-line-length': [typeof disabled];
'footer-max-line-length': [typeof disabled];
'header-max-length': [typeof disabled];
};
};
export default commitlintConfig;
//# sourceMappingURL=commitlintConfig.d.ts.map