Fix Imports to point to the actual symbols rather then wrongly imported ones.
This commit is contained in:
parent
0167863b33
commit
b3411a3303
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -192,7 +192,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