Replies: 3 comments 2 replies
-
I'll add that this is the first time Im using a config file. Never thought about it with previous versions of |
Beta Was this translation helpful? Give feedback.
0 replies
-
Are you running TFLint with |
Beta Was this translation helpful? Give feedback.
2 replies
-
Thank you @bendrucker for opening up #2305. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I created
~/.tflint.hcl
simply as:tflint
the output is thedefault
.export TFLINT_CONFIG_FILE=$HOME/.tflint.hcl
and runtflint
, the output isdefault
.tflint --config $HOME/.tflint.hcl
the output isdefault
.strace tflint 2>&1 | grep -i conf
and can see that it's reading it in:read(3, "config {\n format = \"compact\"\n}\n", 512) = 32
tflint --format=compact
is the formatcompact
ed.tflint
itself does not complain about the config file (which I assume it would?), so why is the setting ignored?Thoughts? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions