ErrorProne
Error Prone is a tool designed to catch common programming mistakes in Java that go beyond the scope of regular compiler type checking. It enhances the compiler's type analysis to detect bugs early, before they can lead to problems in production. Google integrates Error Prone into its Java build system to prevent serious bugs from entering its codebase, and it has been open-sourced for public use.
The tool integrates seamlessly into standard builds, so it runs automatically for developers without extra effort. It provides immediate feedback on mistakes as they are made and offers suggested fixes, making it easier to correct issues and build additional tooling on top of it.
https://errorprone.info/
Comments
Post a Comment