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 c4ed83a commit 30c3938Copy full SHA for 30c3938
src/content-linter/scripts/lint-content.ts
@@ -284,6 +284,11 @@ async function main() {
284
// Ensure previous console logging is not truncated
285
console.log('\n')
286
const took = end - start
287
+ if (warningFileCount > 0 || errorFileCount > 0) {
288
+ spinner.info(
289
+ `💡 You can disable linter rules for specific lines or blocks of text. See https://gh.io/suppress-linter-rule.\n\n`,
290
+ )
291
+ }
292
spinner.info(
293
`🕦 Markdownlint finished in ${(took > 1000 ? took / 1000 : took).toFixed(1)} ${
294
took > 1000 ? 's' : 'ms'
0 commit comments