mirror of
https://github.com/johndoe6345789/postgres.git
synced 2026-04-24 05:45:00 +00:00
9 lines
260 B
TypeScript
9 lines
260 B
TypeScript
import type { UserConfig } from '@commitlint/types';
|
|
|
|
const Configuration: UserConfig = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
ignores: [message => message.startsWith('chore: bump')], // Ignore dependabot commits
|
|
};
|
|
|
|
export default Configuration;
|