forked from Azure/ResourceModules
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbicepconfig.json
More file actions
14 lines (14 loc) · 745 Bytes
/
bicepconfig.json
File metadata and controls
14 lines (14 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// This is a Bicep configuration file. It can be used to control how Bicep operates.
// For example which linter warnings to display, or which external source (e.g. Template Specs / Bicep Container Registry) to make available as a short reference
// For further information, please refer to the official documentation at: https://learn.microsoft.com/en-us/azure/azure-resource-manager/bicep/bicep-config
{
"analyzers": {
"core": {
"rules": {
"explicit-values-for-loc-params": {
"level": "off" // Reason: Our modules default to e.g. the location of their parent resource group which is sufficient if deploying a self-contained solution
}
}
}
}
}