mirror of
https://github.com/zama-ai/fhevm-solidity.git
synced 2026-01-10 13:07:56 -05:00
15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
import type { UserConfig } from '@commitlint/types';
|
|
|
|
const Configuration: UserConfig = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
['ci', 'chore', 'docs', 'ticket', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test'],
|
|
],
|
|
},
|
|
};
|
|
|
|
export default Configuration;
|