We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1863c74 + 604439c commit c2dd87bCopy full SHA for c2dd87b
src/EditorConfig.VisualStudio/Helpers/SettingsExtensions.cs
@@ -11,6 +11,7 @@ internal static class ConfigLoader
11
public static bool TryLoad(string path, out FileConfiguration fileConfiguration)
12
{
13
fileConfiguration = null;
14
+ if (string.IsNullOrEmpty(path)) return false;
15
var parser = new EditorConfigParser();
16
var configurations = parser.Parse(path);
17
if (!configurations.Any()) return false;
0 commit comments