When we develop logic app standard with VS Code and we have added Azurite via vscode for the storage emulation then in certain setups you will end up with Azurite adding a bunch of files to your workspace. It just looks ugly and fortuntately it looks like there will soon be a change to add them to a sub-folder. More info on the change is below:

https://github.com/Azure/Azurite/issues/391

At present my code looks like the below.

If it annoys you then a couple of little tweaks below will hide them out of the way.

Settings File

In the .vscode\settings.json file add the below snippet to stop the files showing up in vscode.

"files.exclude": {
        "__azurite*": true,
        "__blobstorage__": true,
        "__queuestorage__": true
    }

Git Ignore

In the .gitignore file add the below snippet and they will stop getting added to the git checkin.


# Azurite Files (note - https://github.com/Azure/Azurite/pull/1061)
__azurite_db_blob_extent__.json
__azurite_db_blob__.json
__azurite_db_queue__.json
__azurite_db_table__.json
__azurite_db_queue_extent__.json
__blobstorage__
__queuestorage__

 

Buy Me A Coffee