Broader DotSettings matcher

This commit is contained in:
Sage Vaillancourt 2024-03-20 11:31:48 -04:00
parent 67f8c8aa21
commit bcd54ddbf4
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def get_project_type(project) -> (str, str):
return ("clion", None)
if file.endswith(".csproj"):
return ("rider", file)
if file.endswith("DotSettings"):
if "DotSettings" in file:
# Allow .csproj to override this value
ret = ("rider", None)
if file.endswith(".py"):