mirror of
https://github.com/89luca89/distrobox.git
synced 2026-08-19 01:14:49 -05:00
8 lines
251 B
JavaScript
8 lines
251 B
JavaScript
module.exports = {
|
|
extends: ["@commitlint/config-conventional"],
|
|
rules: {
|
|
"body-max-line-length": [0, "always", Infinity], // disables the 100-char limit
|
|
"header-max-length": [0, "always", Infinity], // disables the 100-char limit
|
|
},
|
|
};
|