mirror of
https://github.com/prime31/FNA-VSCode-Template.git
synced 2025-10-31 21:50:44 +07:00
clean up hidden files
This commit is contained in:
parent
d0572471ff
commit
729d5fa918
31
.vscode/settings.json
vendored
31
.vscode/settings.json
vendored
@ -8,13 +8,28 @@
|
|||||||
"csharp.referencesCodeLens.enabled": false,
|
"csharp.referencesCodeLens.enabled": false,
|
||||||
|
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"obj": true,
|
"**/.[^v]*": true, // hide any file that start with a '.' but keep the .vscode folder
|
||||||
"bin": true,
|
"getFNA.sh": true,
|
||||||
"CompiledContent/bin": true,
|
"MonoGameContent.targets": true,
|
||||||
"CompiledContent/obj": true,
|
".vs": true,
|
||||||
"CompiledContent/.mgstats": true,
|
"**/obj": true,
|
||||||
"*.csproj.user": true,
|
"**/bin": true,
|
||||||
"*.csproj": true,
|
".gitignore": true,
|
||||||
"*.sln": true
|
".gitmodules": true,
|
||||||
|
"README.md": true,
|
||||||
|
"fnalibs": true,
|
||||||
|
"**/CompiledContent/bin": true,
|
||||||
|
"**/CompiledContent/obj": true,
|
||||||
|
"**/CompiledContent/.mgstats": true,
|
||||||
|
"**/*.csproj.user": true,
|
||||||
|
"**/*.csproj": true,
|
||||||
|
"*.sln": true,
|
||||||
|
"FNA/[^src]*": true, // hide everything but the src folder
|
||||||
|
"Nez.FNA/[^Nez]*": true, // hide everything bug the Nez folder
|
||||||
|
"Nez.FNA/Nez.FNA*": true, // we miss the Nez.FNA* stuff with the above line so hide that too
|
||||||
|
"Nez.FNA/Nez/{[^DN]*}": true, // hide everything except what begins with D or N
|
||||||
|
"Nez.FNA/Nez/Nez.VisualStudio*": true,
|
||||||
|
"Nez.FNA/Nez/Nez.Xamarin*": true,
|
||||||
|
"Nez.FNA/Nez/Nez.Naming*": true,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user