We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 version 0.2.328 (last released as of right now)
Describe the bug When you follow the below repro steps, you get the BCP018 error with message: Expected the "]" character at this location.
Expected the "]" character at this location.
The error is misleading because the real issue is that the array wasn't spread across multiple lines (newlines are basically missing).
To Reproduce Paste in the following bicep snippet into VS code:
var things = [true]
Additional context
The text was updated successfully, but these errors were encountered:
Wouldn't this be gone after #586 will be implemented?
Sorry, something went wrong.
Yes it would
Another example:
param password string = 'xxxx' param o object = { a: 1 } var sum = 1 + 3 output sub int = sum
Actual error: Expected: error on the param o object line
Closed with #4956
No branches or pull requests
Bicep version
0.2.328 (last released as of right now)
Describe the bug
When you follow the below repro steps, you get the BCP018 error with message:
Expected the "]" character at this location.
The error is misleading because the real issue is that the array wasn't spread across multiple lines (newlines are basically missing).
To Reproduce
Paste in the following bicep snippet into VS code:
Additional context
The text was updated successfully, but these errors were encountered: