Skip to content

Commit

Permalink
style: Reorder variables
Browse files Browse the repository at this point in the history
  • Loading branch information
RSeidelsohn committed Feb 3, 2022
1 parent 44b674a commit ab1dbb2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,20 @@ http://yuilibrary.com/license/

const UNKNOWN = 'UNKNOWN';
const UNLICENSED = 'UNLICENSED';

const chalk = require('chalk');
const debug = require('debug');
const fs = require('fs');
const getLicenseTitle = require('./getLicenseTitle');
const licenseFiles = require('./license-files');
const mkdirp = require('mkdirp');
const path = require('path');
const read = require('read-installed-packages');
const spdxCorrect = require('spdx-correct');
const spdxSatisfies = require('spdx-satisfies');
const treeify = require('treeify');

const getLicenseTitle = require('./getLicenseTitle');
const licenseFiles = require('./license-files');

// Set up debug logging
// https://www.npmjs.com/package/debug#stderr-vs-stdout
const debugError = debug('license-checker-rseidelsohn:error');
Expand Down

0 comments on commit ab1dbb2

Please sign in to comment.