diff --git a/.codeclimate.yml b/.codeclimate.yml index 96a5552..22eb9c9 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -11,4 +11,3 @@ exclude_paths: - "Dockerfile" - "bin/fixme" - "tests/**" -- ".codeclimate.yml" diff --git a/lib/fix-me.js b/lib/fix-me.js index 8b85231..cea3d96 100644 --- a/lib/fix-me.js +++ b/lib/fix-me.js @@ -35,7 +35,7 @@ FixMe.prototype.find = function(file){ self = this; // Prepare the grep string for execution (uses BusyBox grep) - var grepString = ["grep -inHwoE", fixmeStrings, '"' + file + '"'].join(" "); + var grepString = ["grep -nHwoE", fixmeStrings, '"' + file + '"'].join(" "); // Execute grep with the FIXME patterns