diff options
Diffstat (limited to 'lib/utils.js')
-rw-r--r-- | lib/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils.js b/lib/utils.js index f25e6b622..53218b25b 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -62,7 +62,7 @@ function parseOutput(lines, inputFilename, pathPrefix) { line = line.split('<stdin>').join('<source>'); if (pathPrefix) line = line.replace(pathPrefix, ""); if (inputFilename) line = line.split(inputFilename).join('<source>'); - if (line !== "" && line.indexOf("fixme:") !== 0) { + if (line !== "") { const lineObj = {text: line}; const match = line.replace(/\x1b\[[\d;]*[mK]/g, '').match(re); if (match) { |