Several tools rely on the original format shown above, so TFLint adds the source attribute as well.
The rule attribute will remain for backwards compatibility, but will be removed in the future. Tools that rely on its value are encouraged to switch to the source attribute as soon as possible.
Fixes https://github.com/terraform-linters/tflint/issues/2056
Currently, the
checkstyle
output format uses therule
attribute as the rule name.However, the original Checkstyle XML output format uses the
source
attribute as the issue identifier. https://github.com/checkstyle/checkstyle/blob/a7042e5119e6df9b8f782751af6cae2ee54a215a/src/main/java/com/puppycrawl/tools/checkstyle/XMLLogger.java#L205-L224Several tools rely on the original format shown above, so TFLint adds the
source
attribute as well.The
rule
attribute will remain for backwards compatibility, but will be removed in the future. Tools that rely on its value are encouraged to switch to thesource
attribute as soon as possible.