Skip to content

Commit

Permalink
Removed eslint comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Mar 7, 2016
1 parent 7cec08e commit d10ada3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pino.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

var stringifySafe = require('json-stringify-safe')
var format = require('util').format // eslint-disable-line no-unused-vars
var format = require('util').format
var os = require('os')
var pid = process.pid
var hostname = os.hostname()
Expand Down Expand Up @@ -94,7 +94,7 @@ function pino (opts, stream) {
}
}

function asJson (obj, msg, num) { // eslint-disable-line no-unused-vars
function asJson (obj, msg, num) {
if (!msg && obj instanceof Error) {
msg = obj.message
}
Expand Down

0 comments on commit d10ada3

Please sign in to comment.