chore(build): remove eslint-plugin-file-progress usage + correct newlines for npm run check:custom-rules (#38938)

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: hainenber <dotronghai96@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
dependabot[bot]
2026-04-01 00:35:02 +07:00
committed by GitHub
parent 6ea9f2ade9
commit f85efe6139
4 changed files with 2 additions and 29 deletions

View File

@@ -651,7 +651,7 @@ function main() {
}
// eslint-disable-next-line no-console
console.log(`Checking ${files.length} files for Superset custom rules...\\n`);
console.log(`Checking ${files.length} files for Superset custom rules...\n`);
files.forEach(file => {
// Resolve the file path
@@ -664,7 +664,7 @@ function main() {
});
// eslint-disable-next-line no-console
console.log(`\\n${errorCount} errors, ${warningCount} warnings`);
console.log(`\n${errorCount} errors, ${warningCount} warnings`);
if (errorCount > 0) {
process.exit(1);