commitlint-config-b2broker
Version:
Shareable commitlint config
31 lines (29 loc) • 523 B
TypeScript
declare const _default: {
extends: "@commitlint/config-conventional";
rules: {
"type-case": [2, "always", "camel-case"];
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"initial",
"dependencies",
"peerDependencies",
"devDependencies",
"metadata"
]
];
};
};
export = _default;