We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4556b7c commit 37e4e88Copy full SHA for 37e4e88
lib/rules/line-length.js
@@ -29,10 +29,14 @@ export default {
29
let failed = false
30
for (let i = 0; i < parsed.body.length; i++) {
31
const line = parsed.body[i]
32
+
33
// Skip quoted lines, e.g. for original commit messages of V8 backports.
34
if (line.startsWith(' ')) { continue }
35
// Skip lines with URLs.
36
if (/https?:\/\//.test(line)) { continue }
37
+ // Skip co-authorship.
38
+ if (line.startsWith('Co-Authored-By')) { continue }
39
40
if (line.length > len) {
41
failed = true
42
context.report({
0 commit comments