-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
[xml] Add MissingEncoding rule #4592
Conversation
- Enforce XML files have an encoding set in the XML Declaration
Generated by 🚫 Danger |
<property name="xpath"> | ||
<value> | ||
<![CDATA[ | ||
//document[@XmlEncoding = ""] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
//document[@XmlEncoding = ""] | |
/document[@XmlEncoding = ""] |
This otherwise looks ok to me, but I think ideally we would expose this through an XPath function, no an attribute. Otherwise it is only accessible through XPathRule, while DomXPathRule is supposed to be preferred for the XML module. /*[pmd-xml:fileEncoding() = ""]
would be available in both.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll update this PR and merge it. Once this is in a released version, we can update our dogfood ruleset.
ideally we would expose this through an XPath function, no an attribute. Otherwise it is only accessible through XPathRule, while DomXPathRule is supposed to be preferred
I think, that's ok for now. We can improve it, once someone needs it.
[xml] Add MissingEncoding rule #4592
Describe the PR
This implementation has a few constraints:
Related issues
This would allow us to remove the test from #4586 and instead add this rule to the dogfooding ruleset.
Ready?
./mvnw clean verify
passes (checked automatically by github actions)