diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..252a9ad --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,15 @@ +const Configuration = { + /* + * Resolve and load @commitlint/config-conventional from node_modules. + * Referenced packages must be installed + */ + extends: ['@commitlint/config-conventional'], + /* + * Any rules defined here will override rules from @commitlint/config-conventional + */ + rules: { + 'body-max-line-length': [1, 'always', 80], + }, +}; + +module.exports = Configuration;