How to auto format azure bicep files to have common way for writing/format code from
param instLocation array = [
'euw'
]
to
param instLocation array = ['euw']
To auto format azure bicep file, you can use
az bicep format
that will come out with next release, https://github.com/Azure/bicep/pull/8580