From d6832d66756a24a3fd11b96705df2e4fa43fdf3f Mon Sep 17 00:00:00 2001 From: Yannick Croissant Date: Thu, 27 Jun 2019 10:39:06 +0200 Subject: [PATCH] Fix new required import order --- tests/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/index.js b/tests/index.js index 2a05f350f6..4af8a22063 100644 --- a/tests/index.js +++ b/tests/index.js @@ -2,12 +2,12 @@ 'use strict'; -const plugin = require('..'); - const assert = require('assert'); const fs = require('fs'); const path = require('path'); +const plugin = require('..'); + const ruleFiles = fs.readdirSync(path.resolve(__dirname, '../lib/rules/')) .map(f => path.basename(f, '.js'));