Skip to content

Commit e7bf6f8

Browse files
microsoft-github-policy-service[bot]Bicep Automation
andauthored
Reformat code (#17916)
Update code to match the house style 😎 Co-authored-by: Bicep Automation <[email protected]>
1 parent d991dfe commit e7bf6f8

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

src/Bicep.Core.UnitTests/Features/FeatureProviderOverrides.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,6 @@ public FeatureProviderOverrides(
6363
ModuleExtensionConfigsEnabled,
6464
DesiredStateConfigurationEnabled,
6565
OnlyIfNotExistsEnabled,
66-
UserDefinedConstraintsEnabled) { }
66+
UserDefinedConstraintsEnabled)
67+
{ }
6768
}

src/Bicep.Core/Emit/ModuleExtensionConfigsLimitations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft Corporation.
1+
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT License.
33

44
using Bicep.Core.Diagnostics;

src/Bicep.Core/Emit/ResourcesReferenceAccessVisitor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ public override void VisitVariableAccessSyntax(VariableAccessSyntax syntax)
4949
hasResourceReferencesAccess = true;
5050
}
5151
}
52-
}
52+
}

src/Bicep.Core/Semantics/Namespaces/SystemNamespaceType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1995,7 +1995,7 @@ static IEnumerable<Decorator> GetBicepTemplateDecorators(IFeatureProvider featur
19951995
description: "The predicate applied to the resource.",
19961996
flags: FunctionParameterFlags.Required)
19971997
.WithParameter(
1998-
name:"maxWaitTime",
1998+
name: "maxWaitTime",
19991999
type: LanguageConstants.String,
20002000
description: "Maximum time used to wait until the predicate is true. Please be cautious as max wait time adds to total deployment time. It cannot be a negative value. Use [ISO 8601 duration format](https://en.wikipedia.org/wiki/ISO_8601#Durations).",
20012001
flags: FunctionParameterFlags.Required | FunctionParameterFlags.Constant)

src/Bicep.Core/Semantics/SemanticModel.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ public SemanticModel(IBicepAnalyzer linterAnalyzer, INamespaceProvider namespace
9898
return hierarchy;
9999
});
100100
this.resourceAncestorsLazy = new(() => ResourceAncestorGraph.Compute(this));
101-
this.resourceScopeDataLazy = new(() => {
101+
this.resourceScopeDataLazy = new(() =>
102+
{
102103
var diagnostics = ToListDiagnosticWriter.Create();
103104
var scopeData = ScopeHelper.GetResourceScopeInfo(this, diagnostics);
104105
return (scopeData, diagnostics.GetDiagnostics());

0 commit comments

Comments
 (0)