Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard. By default it supports the Google Java Style Guide and Sun Code Conventions, but is highly configurable. It can be invoked with an ANT task and a command line program.
pbludov on issue-9146-java11
Issue #9146: specify java versi… (compare)
pbludov on maven
pbludov on issue-9146-java11
minor: cleanup whitelist words Issue #7877: Removed redundant … Issue #5711: JavadocTagContinua… and 9 more (compare)
pbludov on issue-9310-java11-inputs
pbludov on issue-9310-java11-inputs
Issue #9310: test inputs should… (compare)
pbludov on issue-9310-java11-inputs
Issue #9310: test inputs should… (compare)
pbludov on issue-9310-java11-inputs
Issue #9152: Record implementin… infra: add checkout_from suppor… dependency: bump archunit-junit… and 3 more (compare)
pbludov on issue-9310-java11-inputs
minor: cleanup whitelist words Issue #7877: Removed redundant … Issue #5711: JavadocTagContinua… and 1 more (compare)
pbludov on issue-9310-java11-inputs
Issue #9310: test inputs should… (compare)
pbludov on issue-9310-java11-inputs
Issue #9310: test inputs should… (compare)
pbludov on issue-9310-java11-inputs
Issue #9310: test inputs should… (compare)
pbludov on issue-9310-java11-inputs
#Issue #9310: test inputs shoul… (compare)
pbludov on master
doc: fix checkstyle jar version… Issue #9297: solve spotbugs vio… (compare)
pbludov on issue-9297-spotbugs-11
pbludov on issue-9146-java11
Issue #9146: update javassist t… Issue #9297: solve spotbugs vio… Issue #9146: switch to jdk 11 i… and 1 more (compare)
pbludov on issue-9146-java11
Issue #9146: switch to jdk 11 i… Issue #9146: update javassist t… Issue #9297: solve spotbugs vio… (compare)
pbludov on issue-9146-java11
Issue #9146: switch to jdk 11 i… (compare)
pbludov on issue-9146-java11
Issue #9146: upgrade minimal re… Issue #9146: switch to jdk 11 i… (compare)
pbludov on issue-9297-spotbugs-11
Pull #9298: change job to check… Issue #9297: solve spotbugs vio… (compare)
pbludov on issue-9297-spotbugs-11
minor: remove pitest suppressio… Issue #9292: disable markdownli… minor: Fix github issue templat… and 1 more (compare)
mvn -e --batch-mode site -Dcheckstyle.config.location=google_checks.xml -Dcheckstyle.excludes= -Dcheckstyle.version=8.32-SNAPSHOT -Dcheckstyle.failsOnError=false
(you can find it in your logs) are failing with OOM. Please google about it, there are few maven evn variables to extend memory used by maven, you probably have very low default
com.puppycrawl.tools.checkstyle.utils
), which profile should I use? Thanks.
com.puppycrawl.tools.checkstyle.utils
com.puppycrawl.tools.checkstyle.checks.coding
.ci/pitest.sh pitest-coding
no issue is reported, mvn verify
is ok too.Hi everyone, I have done an issue, and I had to resolve suggestion, then I did it but travis-ci is not passing all tests because my branch is 19 commits old and it requires to be at most 10 commits old. If I will rebase my branch my pull request will have additional 19 commits. What should I do? Before, I just closed pull requests and opened a new one with a new branch. Is there any other better solution?
@romani @rnveach
git checkout master
git pull upstream master
git checkout <the-PR-branch>
git rebase master
git push --force