Linter command output on newline (#1146)

When lint fails, print command output on a newline surrounded by "------"

Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
Co-authored-by: Gabriel Diaz <gabo.fdc@gmail.com>
This commit is contained in:
Ishan Goel 2021-01-20 22:44:30 +04:00 committed by GitHub
parent 3c13a589f6
commit c9471d70eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -283,7 +283,7 @@ function LintCodebase() {
# Error #
#########
error "Found errors in [${LINTER_NAME}] linter!"
error "Error code: ${ERROR_CODE}. Command output:${NC}[${LINT_CMD}]"
error "Error code: ${ERROR_CODE}. Command output:${NC}\n------\n${LINT_CMD}\n------"
# Increment the error count
(("ERRORS_FOUND_${FILE_TYPE}++"))
fi
@ -321,7 +321,7 @@ function LintCodebase() {
#########
error "Found errors in [${LINTER_NAME}] linter!"
error "This file should have failed test case!"
error "Error code: ${ERROR_CODE}. Command output:${NC}[${LINT_CMD}]."
error "Error code: ${ERROR_CODE}. Command output:${NC}\n------\n${LINT_CMD}\n------"
# Increment the error count
(("ERRORS_FOUND_${FILE_TYPE}++"))
else
@ -339,7 +339,7 @@ function LintCodebase() {
AddDetailedMessageIfEnabled "${LINT_CMD}" "${TMPFILE}"
fi
fi
debug "Error code: ${ERROR_CODE}. Command output:${NC}[${LINT_CMD}]."
debug "Error code: ${ERROR_CODE}. Command output:${NC}\n------\n${LINT_CMD}\n------"
done
#################################