Skip to content

Commit

Permalink
Chore: Move lib/file-finder.js to lib/util/ (refs #10559)
Browse files Browse the repository at this point in the history
  • Loading branch information
platinumazure committed Jul 29, 2018
1 parent e37a593 commit c2e3f2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/config.js
Expand Up @@ -15,7 +15,7 @@ const path = require("path"),
ConfigFile = require("./config/config-file"),
ConfigCache = require("./config/config-cache"),
Plugins = require("./config/plugins"),
FileFinder = require("./file-finder"),
FileFinder = require("./util/file-finder"),
isResolvable = require("is-resolvable");

const debug = require("debug")("eslint:config");
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/lib/file-finder.js → tests/lib/util/file-finder.js
Expand Up @@ -11,14 +11,14 @@

const assert = require("chai").assert,
path = require("path"),
FileFinder = require("../../lib/file-finder.js");
FileFinder = require("../../../lib/util/file-finder.js");

//------------------------------------------------------------------------------
// Tests
//------------------------------------------------------------------------------

describe("FileFinder", () => {
const fixtureDir = path.resolve(__dirname, "..", "fixtures"),
const fixtureDir = path.resolve(__dirname, "../..", "fixtures"),
fileFinderDir = path.join(fixtureDir, "file-finder"),
subdir = path.join(fileFinderDir, "subdir"),
subsubdir = path.join(subdir, "subsubdir"),
Expand Down

0 comments on commit c2e3f2b

Please sign in to comment.