Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jul 11, 2016
1 parent 13cbdc2 commit 6635af0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/test-worker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use strict';
/* eslint-disable import/order */
var opts = JSON.parse(process.argv[2]);
var testPath = opts.file;

Expand Down Expand Up @@ -38,7 +39,7 @@ if (debug.enabled) {
// bind globals first before anything has a chance to interfere
var globals = require('./globals');
globals.options = opts;
var Promise = require('bluebird'); // eslint-disable-line import-order/import-order
var Promise = require('bluebird');

// Bluebird specific
Promise.longStackTraces();
Expand All @@ -60,11 +61,11 @@ sourceMapSupport.install({
}
});

var currentlyUnhandled = require('currently-unhandled')(); // eslint-disable-line import-order/import-order
var currentlyUnhandled = require('currently-unhandled')();
var serializeError = require('./serialize-error');
var send = require('./send');
var throwsHelper = require('./throws-helper');
var installPrecompiler = require('require-precompiled'); // eslint-disable-line import-order/import-order
var installPrecompiler = require('require-precompiled');
var cacheDir = opts.cacheDir;

// check if test files required ava and show error, when they didn't
Expand Down

0 comments on commit 6635af0

Please sign in to comment.