We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The documentation shows failFast within the configuration tag:
failFast
configuration
<configuration> <rules> <requireEncoding> <encoding>UTF-8</encoding> <includes>src/main/resources/**,src/test/resources/**</includes> </requireEncoding> </rules> <fastFail>false</fastFail> </configuration>
This doesn't work. failFast needs to be with requireEncoding to show all failing files:
requireEncoding
<configuration> <rules> <requireEncoding> <encoding>UTF-8</encoding> <includes>src/main/resources/**,src/test/resources/**</includes> <fastFail>false</fastFail> </requireEncoding> </rules> </configuration>
The text was updated successfully, but these errors were encountered:
You right - PR are welcome
Sorry, something went wrong.
Fix #271 - requireEncoding documentations
88f18c4
a708cff
slawekjaranowski
Successfully merging a pull request may close this issue.
The documentation shows
failFast
within theconfiguration
tag:This doesn't work.
failFast
needs to be withrequireEncoding
to show all failing files:The text was updated successfully, but these errors were encountered: