Skip to content

Commit

Permalink
Cleanup style nits
Browse files Browse the repository at this point in the history
  • Loading branch information
kpdecker committed Jun 21, 2015
1 parent 1ecbdba commit a14ffac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
"comma-dangle": [2, "never"],
"no-cond-assign": [2, "except-parens"],

// Allow for debugging
"no-console": 1,
"no-console": 0,

"no-constant-condition": 2,
"no-control-regex": 2,
Expand Down Expand Up @@ -134,7 +133,7 @@
"no-catch-shadow": 2,
"no-delete-var": 2,
"no-label-var": 2,
"no-shadow": 1,
"no-shadow": 0,
"no-shadow-restricted-names": 2,
"no-undef": 2,
"no-undef-init": 2,
Expand Down
2 changes: 1 addition & 1 deletion lib/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var SixSpeed = {
});

_.each(hz, function(frequency, testName) {
hz[testName] = ((frequency / baseline.hz)*100).toFixed(5) + '% (' + Benchmark.formatNumber(frequency.toFixed(0)) + ' ops/sec)';
hz[testName] = ((frequency / baseline.hz) * 100).toFixed(5) + '% (' + Benchmark.formatNumber(frequency.toFixed(0)) + ' ops/sec)';
});

if (!supportsES6) {
Expand Down

0 comments on commit a14ffac

Please sign in to comment.