Skip to content

Commit bc633b6

Browse files
committed
lint: changed tick to exclamation mark
1 parent d271426 commit bc633b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/csscomb.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Comb.prototype = {
130130
var changed = data !== processedData;
131131
var lint = _this._lint;
132132

133-
var tick = (changed) ? (lint ? '\x1B[31m✓\x1B[39m' : '✓') : ' ';
133+
var tick = changed ? (lint ? '!' : '✓') : ' ';
134134
var message = _this._verbose ? console.log.bind(null, tick, path) : doNothing;
135135

136136
_this.processed++;

0 commit comments

Comments
 (0)