chore: configure commitlint

This commit is contained in:
严浩
2025-05-03 16:00:52 +08:00
parent ce914d3275
commit e5dd7aa70e
4 changed files with 500 additions and 8 deletions

9
commitlint.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import type { UserConfig } from '@commitlint/types';
const Configuration: UserConfig = {
extends: ['@commitlint/config-conventional'],
formatter: '@commitlint/format',
};
export default Configuration;