Skip to content

Commit

Permalink
fix: line-length
Browse files Browse the repository at this point in the history
Co-authored-by: Adrien Vergé <adrienverge@gmail.com>
  • Loading branch information
gardar and adrienverge committed Jan 13, 2024
1 parent 420c814 commit a03d4a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ report.
} else {
printf(",");
}
printf("{\"location\":{\"path\":\"%s\",\"lines\":{\"begin\":%s,\"end\":%s}}," \
"\"severity\":\"%s\",\"check_name\":\"%s\",\"categories\":[\"Style\"]," \
"\"type\":\"issue\",\"description\":\"%s\"}",
$1, $2, $3, sev, a[3], a[2]);
printf("{\"location\":{\"path\":\"%s\",\"lines\":{\"begin\":%s",\
"\"end\":%s}},\"severity\":\"%s\",\"check_name\":\"%s\","\
"\"categories\":[\"Style\"],\"type\":\"issue\","\
"\"description\":\"%s\"}", $1, $2, $3, sev, a[3], a[2]);
}
END { if (!first) printf("]\n"); }' > reports/codequality.json)
artifacts:
Expand Down

0 comments on commit a03d4a0

Please sign in to comment.