Suppress unwanted no-console linting violation in test script, update browser script.

This commit is contained in:
David Anson 2021-06-13 16:45:38 -07:00
parent 427057dd1e
commit cebde8f9f6
2 changed files with 2 additions and 1 deletions

View file

@ -54,6 +54,7 @@ function lintTestRepo(t, globPatterns, configPath) {
files,
config
};
// eslint-disable-next-line no-console
console.log(`${t.title}: Linting ${files.length} files...`);
return markdownlintPromise(options).then((results) => {
const resultsString = results.toString();