Skip to content

Commit

Permalink
fix: test formatting, and remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Radchenko committed Feb 13, 2017
1 parent 0ffeefc commit 1798b43
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion lib/processors/js.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ function postprocess(messages, fileName) {

codeBlocksProcessed++;
});
console.log(keep);

return keep;
}
Expand Down
10 changes: 5 additions & 5 deletions tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ var cli = new CLIEngine({
extensions: ['js'],
ignore: false,
rules: {
'eol-last': 2,
'no-console': 2,
'no-undef': 2,
'quotes': 2,
'spaced-comment': 2
'eol-last': 2,
'no-console': 2,
'no-undef': 2,
'quotes': 2,
'spaced-comment': 2
},
useEslintrc: false
});
Expand Down

0 comments on commit 1798b43

Please sign in to comment.