Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bicep Expressions should be allowed to be multiline between parentheses #1686

Closed
JustinGrote opened this issue Mar 2, 2021 · 1 comment
Closed
Labels
enhancement New feature or request Needs: Triage 🔍

Comments

@JustinGrote
Copy link

JustinGrote commented Mar 2, 2021

Is your feature request related to a problem? Please describe.
A common feature of languages is the ability for expressions defined in parentheses to be defined on multiple lines. This allows for both better git diff (PRs can be per-property rather than per-line) and readability with complex statements like long formats.

Describe the solution you'd like

How it works today

output fgaManagementSSHConfig string = format(fgManagementSSHConfigTemplate, fortigateA.outputs.fgName, fqdn, fgaManagementSshPort, adminUsername)

How it should be able to work

output fgaManagementSSHConfig string = format(
  fgManagementSSHConfigTemplate, 
  fortigateA.outputs.fgName, 
  fqdn, 
  fgaManagementSshPort, 
  adminUsername
)
@JustinGrote JustinGrote added the enhancement New feature or request label Mar 2, 2021
@ghost ghost added the Needs: Triage 🔍 label Mar 2, 2021
@JustinGrote
Copy link
Author

Dupe of #146

@ghost ghost locked as resolved and limited conversation to collaborators May 28, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request Needs: Triage 🔍
Projects
None yet
Development

No branches or pull requests

1 participant