Fix Imports to point to the actual symbols rather then wrongly imported ones.
This commit is contained in:
parent
4725a622c6
commit
294c975d49
|
@ -2,8 +2,9 @@ module dfmt.globmatch_editorconfig;
|
||||||
|
|
||||||
import std.path : CaseSensitive;
|
import std.path : CaseSensitive;
|
||||||
import std.range : isForwardRange, ElementEncodingType;
|
import std.range : isForwardRange, ElementEncodingType;
|
||||||
import std.string : isSomeChar, isSomeString, empty, save, front, popFront;
|
import std.traits : isSomeChar, isSomeString;
|
||||||
import std.typecons : Unqual;
|
import std.range.primitives : empty, save, front, popFront;
|
||||||
|
import std.traits : Unqual;
|
||||||
import std.conv : to;
|
import std.conv : to;
|
||||||
import std.path : filenameCharCmp, isDirSeparator;
|
import std.path : filenameCharCmp, isDirSeparator;
|
||||||
|
|
||||||
|
|
|
@ -188,7 +188,7 @@ else
|
||||||
Config explicitConfig;
|
Config explicitConfig;
|
||||||
if (explicitConfigDir)
|
if (explicitConfigDir)
|
||||||
{
|
{
|
||||||
import std.path : exists, isDir;
|
import std.file : exists, isDir;
|
||||||
|
|
||||||
if (!exists(explicitConfigDir) || !isDir(explicitConfigDir))
|
if (!exists(explicitConfigDir) || !isDir(explicitConfigDir))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue