diff --git a/src/commitlint/index.js b/src/commitlint/index.js index 9abced3..64bb6c6 100644 --- a/src/commitlint/index.js +++ b/src/commitlint/index.js @@ -37,3 +37,11 @@ export const commitLintConfig = { ], }, }; + +export const commitLintReferenceRequiredConfig = { + ...commitLintConfig, + rules: { + ...commitLintConfig.rules, + 'references-empty': [2, 'never'], + }, +};