Skip to content

Commit 47e17e4

Browse files
author
Ashley Baldwin-Hunter
committedDec 14, 2015
Merge pull request #18 from codeclimate/abh-only-capitalized-fixmes
only capitalized fixmes
2 parents ee589d7 + ee8d1cf commit 47e17e4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎.codeclimate.yml

-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ exclude_paths:
1111
- "Dockerfile"
1212
- "bin/fixme"
1313
- "tests/**"
14-
- ".codeclimate.yml"

‎lib/fix-me.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ FixMe.prototype.find = function(file){
3535
self = this;
3636

3737
// Prepare the grep string for execution (uses BusyBox grep)
38-
var grepString = ["grep -inHwoE", fixmeStrings, '"' + file + '"'].join(" ");
38+
var grepString = ["grep -nHwoE", fixmeStrings, '"' + file + '"'].join(" ");
3939

4040

4141
// Execute grep with the FIXME patterns

0 commit comments

Comments
 (0)
Please sign in to comment.