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
Description:
In the current version of the script, after initializing tflint using --init, the actual linting step with tflint --config="${cfg}" is missing. This causes Terraform files to not be linted.
Expected Behavior:
tflint should lint the Terraform files after --init is executed
Actual Behavior:
The script initializes tflint, but it doesn't perform the actual linting of the Terraform files.
Description:
In the current version of the script, after initializing tflint using --init, the actual linting step with tflint --config="${cfg}" is missing. This causes Terraform files to not be linted.
Expected Behavior:
tflint should lint the Terraform files after --init is executed
Actual Behavior:
The script initializes tflint, but it doesn't perform the actual linting of the Terraform files.
Steps to Reproduce:
Run the script.
Observe that the linting step is not executed after initialization.
Proposed Solution:
Add the missing step:
&& tflint --config="${cfg}"
in https://github.com/fluidattacks/makes/blob/main/src/args/lint-terraform/entrypoint.shThe text was updated successfully, but these errors were encountered: