diff --git a/.github/semantic.yml b/.github/semantic.yml new file mode 100644 index 0000000..4168a3c --- /dev/null +++ b/.github/semantic.yml @@ -0,0 +1,2 @@ +# Always validate the PR title, and ignore the commits +titleOnly: true diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..993f70f --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,6 @@ +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + 'body-max-line-length': [0, 'always', Infinity], // disable commit body length restriction + }, +}