Skip to content

Commit

Permalink
fix: message
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza authored Apr 30, 2022
1 parent 2f4b384 commit 70afe32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StylelintError.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class StylelintError extends Error {
* @param {string=} messages
*/
constructor(messages) {
super(`\u001b[1;31m[stylelint]\u001b[1;0m ${messages}`);
super(`[stylelint] ${messages}`);
this.name = 'StylelintError';
this.stack = '';
}
Expand Down

0 comments on commit 70afe32

Please sign in to comment.