-
-
Notifications
You must be signed in to change notification settings - Fork 115
Description
Kind of Issue
Runtime - command-line tools
Tool or Library
cspell
Version
8.8.4
Supporting Library
Not sure / None
OS
macOS
OS Version
macOS 14.5 (23F79)
Description
Cspell prints its summary output to stderr, which is expected.
However, it does this using console.error
, which is intended to be used for actual errors. Starting in Node 20.15, console.error
is colored red on supported terminals to reinforce this purpose.
Thus, even when cspell runs successfully with no issues found, on Node 20.15+ the red output makes it seem like something has gone wrong.
I believe that cspell should emit the summary to stderr, but use a method other than console.error
. Perhaps process.stderr
directly?
Steps to Reproduce
- Confirm you are using Node 20.15 by running
node --version
. - Run
cspell
and observe that the summary is red, even when there are no issues found.
Expected Behavior
Summary output should be red only if something has gone wrong (i.e. one or more issues found).
Additional Information
Node PR that introduced colorized console.error
: nodejs/node#51629
cspell.json
No response
cspell.config.yaml
No response
Example Repository
No response
Code of Conduct
- I agree to follow this project's Code of Conduct