You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I was having a hard time getting this extension to work until I found #21.
> Determined this file is a CloudFormation Template. file:///Users/user/test/test.yml. Found the string AWSTemplateFormatVersion
> running............. ${workspaceFolder}/venv/bin/cfn-lint --format,json,--template,/Users/user/test/test.yml
> Unable to start cfn-lint (Error: spawn ${workspaceFolder}/venv/bin/cfn-lint ENOENT). Is cfn-lint installed correctly?
After doing a which cfn-lint, grabbing the results, and making that the value of `cfnLint.Path, things started working.
Determined this file is a CloudFormation Template. file:///Users/user/test/test.yml. Found the string AWSTemplateFormatVersion
running............. /Users/user/test/venv/bin/cfn-lint --format,json,--template,/Users/user/test/test.yml
Looks like ${workspaceFolder} isn't being resolved. Is this the expected behavior?
The text was updated successfully, but these errors were encountered:
I don't think we currently process VS Code Predefined Variables in our settings, so your resolution is correct. If it's alright with you, I'm going to treat this as an enhancement to add the ability to use VS Code predefined variables (as defined here: https://code.visualstudio.com/docs/editor/variables-reference) when defining linter settings.
Hi,
I was having a hard time getting this extension to work until I found #21.
After doing a
which cfn-lint
, grabbing the results, and making that the value of `cfnLint.Path, things started working.Looks like
${workspaceFolder}
isn't being resolved. Is this the expected behavior?The text was updated successfully, but these errors were encountered: