Broader DotSettings matcher
This commit is contained in:
parent
67f8c8aa21
commit
bcd54ddbf4
|
@ -41,7 +41,7 @@ def get_project_type(project) -> (str, str):
|
||||||
return ("clion", None)
|
return ("clion", None)
|
||||||
if file.endswith(".csproj"):
|
if file.endswith(".csproj"):
|
||||||
return ("rider", file)
|
return ("rider", file)
|
||||||
if file.endswith("DotSettings"):
|
if "DotSettings" in file:
|
||||||
# Allow .csproj to override this value
|
# Allow .csproj to override this value
|
||||||
ret = ("rider", None)
|
ret = ("rider", None)
|
||||||
if file.endswith(".py"):
|
if file.endswith(".py"):
|
||||||
|
|
Loading…
Reference in New Issue