diff --git a/commitlint.config.js b/commitlint.config.js index 646b0e3..9ab1d56 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -5,5 +5,9 @@ module.exports = { // nouns (NativeWind, GitHub Actions, MMKV), which trip the Latin-script // case heuristics in this rule. 'subject-case': [0], + // Dependabot commit bodies embed unbreakable changelog/diff URLs that + // routinely exceed 100 chars; human commits in this repo are subject-only + // with no body, so this rule has no effect on them anyway. + 'body-max-line-length': [0], }, };