CheckStyle-IDEA


Source link: https://github.com/jshiell/checkstyle-idea

CheckStyle-IDEA

© Copyright 2006-2017 CheckStyle-IDEA Contributors

Hosted on GitHub

A plug-in for JetBrains' IntelliJ IDEA 15/2016/2017 which provides real-time feedback against a given CheckStyle profile by way of an inspection.

Released under a BSD-style licence - please see the LICENCE file for details.

OS X users of IDEA 15 please note - CheckStyle 6.2 and above require Java 8. As the default IDEA package for OS X runs on Java 6, please make use of the versions with the bundled JDK, e.g.

or, for Brew Cask users,

  • brew cask install intellij-idea-ce-bundled-jdk
  • brew cask install intellij-idea-bundled-jdk

All other users please note - we require IDEA to be running on JDK 8. AFAIK this is the default as of IDEA 2016.1.

Use

Once installed, a new inspection will be available in the group 'CheckStyle'. The 'Inspections' item in the preferences panel will allow you to turn this on and to configure it.

Project exceptions are treated a little oddly. Because CheckStyle demands these to be on the current classpath errors will appear if these have not as yet been compiled. Further, because we cache the real-time checkers for performance reasons, real-time scans may continue to show the errors after a compilation. A static scan will force a reload of the Checker and should resolve this.

Configuration

Configuration is available under the Settings dialogue. This controls configuration for both the inspection and static scanning.

Configuration Files

The main configuration option is that of the CheckStyle file. Multiple CheckStyle file may be added, and swapped between by using the checkbox. Files may be added using the 'Add' button.

The Scan Test Classes checkbox will enable scanning of Java files under test source roots. If disabled, these files will be ignored.

If a custom file is being used and properties are available for definition then these will accessible using the 'Edit Properties' button.

Eclipse-CS Variable Support

The following variables will be available if you have not otherwise overridden their values:

  • basedir - mapped to the location of the current module file, or the project directory as a fallback.
  • project_loc, workspace_loc - mapped to the project directory.
  • config_loc, samedir - mapped to the directory the rules file is in, or the project directory for remote rules files (e.g. HTTP).

Third Party Checks

This tab allows you to specify any third-party checks which your configuration file makes use of. All selected directories/JAR files will be added to CheckStyle's classpath.

Troubleshooting

If an error occurs during the check an exception will be thrown, which IDEA will then catch and display in the standard exceptions dialogue. If you're unsure as to why things are awry this would be your best bet - chances are it's a missing property or classpath pre-requisite.

Notable Extensions

sevntu.checkstyle

sevntu.checkstyle offers a number of useful checks written by students of the Sevastopol National Technical University (SevNTU). They're also kind enough to offer instructions on setting them up with this plugin.

Checkstyle Addons

Checkstyle Addons offers additional Checkstyle checks not found in other Checkstyle extensions, and it's easy to set up in Checkstyle-IDEA.

Development

Note that the plugin has been entirely developed on OS X - while it should be fine on Linux, I've no idea what result you'd get with Windows. YMMV.

The pre-requisites for the plugin are fairly light - you'll need Git and JDK 1.8.x. Make sure your JAVA_HOME environment variable is set correctly before invoking Gradle.

git clone https://github.com/jshiell/checkstyle-idea.git checkstyle-idea cd checkstyle-idea 

You can then easily build via Gradle:

./gradlew clean build 

To run it in a sandboxed IDEA, run:

./gradlew runIdea 

To debug the plugin, import the plugin into IDEA as a Gradle project, and then use the runIdea Gradle target in debug mode.

Frequently Asked Questions

I see a Cannot Load Project error stating Unsupported major.minor version 52.0.

The plugin is compiled using language level 1.8, and hence must be run on Java 8. This is because CheckStyle 6.2 and above require at least JVM 1.7, and because I like lambdas.

If you're on OS X, use IDEA with the bundled JVM. Otherwise, please ensure IDEA is running using Java 8 or later. Jetbrains offer a support document on this subject.

I see 'Got an exception - java.lang.RuntimeException: Unable to get class information for . (0:0)'

CheckStyle is unable to retrieve information on exceptions in your project until you have built it. Build your project in IDEA and then rescan.

Limitations

  • If you import Gradle project withs Create separate module per source set active in IDEA 2016 or above then the module source paths are truncated. This means relative paths (e.g. suppressions on src/test/.+) may not work as expected.
  • The plugin will throw exceptions if used with class files targeted at a later version than that of the JDK used by IDEA. Please run IDEA on the latest available JVM, ideally the bundled version from JetBrains where available.
  • If you change the configuration options the real-time scan will not be updated until the file is either changed or reopened.
  • We do not check if a property definition is required for a given file. Hence you can exit configuration without setting required properties. Given, however, that CheckStyle files can change without the plug-in being aware this is something we'll always have to live with to some degree.
  • CheckStyle errors and warnings from the inspection are both shown at a single level, as IDEA will only allow one warning level for an inspection.

Feedback

Any comments or bug reports are most welcome - please visit the project website on GitHub.

Acknowledgements

This plug-in owes its existence to both the style-overlords at work mandating compliance with a CheckStyle configuration, and the Eclipse-CS authors for making me jealous of the real-time scan support available for Eclipse.

Thanks to those who have contributed work and effort directly to this project:

  • J. G. Christopher
  • jicken
  • Jonas Bergvall
  • Edward Campbell
  • LightGuard.JP
  • Gerhard Radatz
  • Benjy W
  • Yuri
  • Kristin Young
  • Simon Billingsley
  • Miel Donkers
  • Dmitrij (zherebjatjew)
  • Thomas Jensen
  • Rustam Vishnyakov (@dyadix)
  • Thomas Harning (@harningt)
  • František Hartman (@frant-hartm)
  • Victor Alenkov (@BorzdeG)
  • Baron Roberts (@baron1405)
  • George Kankava (@georgekankava)
  • Thomas Jensen (@tsjensen)
  • Klaus Tannenberg (@KTannenberg)
  • Nikolay Bespalov (@nikolaybespalov)
  • @zentol

And also thanks are due to the authors and contributors of:

  • Eclipse-CS, for inspiration and solutions to coding problems.
  • JetStyle, for filling the area of static scanning and also giving me inspirations on coding solutions.
  • CheckStyle, for without them we'd have merely void and chaos.
  • JetBrains, for an IDE which is worth every penny and then some.

And a big thank-you to everyone who's sent me feedback or bug reports - both are much appreciated!

Licence

This code is released under a BSD licence, as specified in the accompanying LICENCE file.

Version History

  • 5.12.1 Fixed: Class loading issues that broke JavaDoc checks in Android Studio 3 should now be resolved (#352).
  • 5.12.0 New: Added CheckStyle 8.4.
  • 5.12.0 Fixed: Improved feedback when checker cannot be created.
  • 5.11.0 New: Added CheckStyle 8.3.
  • 5.10.2 New: Checkstyle version numbers now descend, leaving the most useful versions at the top - thanks to @tsjensen (#351).
  • 5.10.2 Fixed: Fully qualified checks with paths are now resolved properly (#349).
  • 5.10.2 Fixed: File normalisation was broken on Windows - thanks to @tsjensen (#351).
  • 5.10.2 Fixed: Test paths on newer versions of IntelliJ should be corrected detected - thanks to @tsjensen (#351).
  • 5.10.1 Fixed: Version check should now work on Java 9 (#346).
  • 5.10.1 Fixed: Modified file results not shown when basedir was configured (#345).
  • 5.10.0 New: Added CheckStyle 8.2 (#343).
  • 5.9.1 New: Cleaned up patch releases of Checkstyle (#340). Thanks, again, to Thomas Jenson (@tsjenson).
  • 5.9.0 New: Added CheckStyle 8.1 (#338).
  • 5.8.2 Fixed: Parent of properties dialogue is now correct (#334).
  • 5.8.2 Fixed: Parse stream errors now correctly show the root exception (#331).
  • 5.8.2 Fixed: Property-only changes are now correctly detected when checking configuration modification state (#331).
  • 5.8.2 New: We attempt to resolve rules files as project relative in the configuration dialogue (#333).
  • 5.8.1 Fixed: Resolved cyclic dependency issue. Thanks to Thomas Jensen (@tsjensen) (#327).
  • 5.8.0 New: Bundled Sun/Google checks are now read from selected version of Checkstyle. Thanks to Thomas Jensen (@tsjensen) (#320).
  • 5.7.0 New: Added CheckStyle 8.0.
  • 5.7.0 Fixed: short identifiers are used in temporary file names to assist with path limits on Windows.
  • 5.6.2 New: code style importer now support avoid star imports - thanks to @zentol (#319).
  • 5.6.2 New: temporary files are now created relative to the project base where possible (#321).
  • 5.6.1 New: code style importer now supports import order - thanks to @zentol (#314).
  • 5.6.1 Fixed: code style importer now adds an extra line between leading content and the package declaration (#315).
  • 5.6.1 Fixed: improved housekeeping when Windows projects are not on the system drive (#313).
  • 5.6.0 New: Added CheckStyle 7.8.1.
  • 5.6.0 Fixed: we now try to use a temporary dir in the project folder when the projects is not on the system drive (#302).
  • 5.5.1 New: File paths are now trimmed (#308).
  • 5.5.0 New: Added CheckStyle 7.7 (#305).
  • 5.4.0 New: Added CheckStyle 7.6.1 (#303).
  • 5.3.1 Fixed: Paths from Checkstyle are now normalised (#302).
  • 5.3.0 New: Added CheckStyle 7.6 (#300).
  • 5.3.0 Fixed: Ignored problems are no longer counting for pre-checkin scan (#299).
  • 5.2.0 New: Added CheckStyle 7.5.1 (#296).
  • 5.2.0 Fixed: Ignored problems are excluded from the inspection results (#287).
  • 5.1.4 Fixed: Ignored problems no longer create phantom nodes in the results view (#287).
  • 5.1.3 Fixed: Supporting file lookup should be consistent when adding files (#293).
  • 5.1.2 Fixed: Property defaults should now work again.
  • 5.1.2 Fixed: Logging classes are now included in the local classpath to hopefully avoid oddities such as #294.
  • 5.1.1 Fixed: Improved handling of cached checkers. Thanks to Thomas Jensen (@tsjensen) (#292).
  • 5.1.0 Fixed: Third-party check now work again. Thanks to Thomas Jensen (@tsjensen) (#286).
  • 5.1.0 New: Added CheckStyle 7.5.
  • 5.0.1 Fixed: Improved handling of IOExceptions from rules files (#285).
  • 5.0.0 New: You can now choose the version of Checkstyle to use. All credit to Thomas Jensen (@tsjensen) (#281).
  • 4.35.0 New: Updated to CheckStyle 7.4.
  • 4.35.0 Fixed: Improved error feedback when properties are missing from rules files (#275).
  • 4.34.0 New: Updated to CheckStyle 7.3.
  • 4.34.0 Fixed: Added (hopefully) a workaround for #278.
  • 4.33.0 New: Updated to CheckStyle 7.2.
  • 4.32.2 Fixed: Victim location errors are now at debug level.
  • 4.32.2 Fixed: The default tab width is now set from the IDEA Java Code Style, rather than defaulting to the Checkstyle default.
  • 4.32.1 Fixed: tabWidth is now read properly, improving element matching for errors (#259, #265). Thanks to Klaus Tannenberg (@KTannenberg).
  • 4.32.0 New: Errors for which we cannot find a matching element are now displayed at the top of the file (#265).
  • 4.32.0 New: Updated to CheckStyle 7.1.1.
  • 4.32.0 New: Scan scopes expanded and improved (#268). Thanks to Thomas Jensen (@tsjensen).
  • 4.31.1 New: Updated IDEA SDK to 15.0.6 (143.2370.31), which means no more IDEA 14 support.
  • 4.31.0 New: Updated to CheckStyle 7.1 (#264).
  • 4.30.1 Fixed: StringIndexOutOfBoundsExceptions are now treated as parse errors (#258).
  • 4.30.1 Fixed: Style importer no longer errors on missing properties (#256).
  • 4.30.0 New: Updated to CheckStyle 7.0.
  • 4.29.2 Fixed: Corrected cleanup thread pooling (#239). Thanks to Baron Roberts.
  • 4.29.2 Fixed: If the rules file for a configuration is deleted, we continue to show errors. It will now be deactivated (#240). Thanks to Victor Alenkov.
  • 4.29.1 Fixed: Default property values should now be applied (#237).
  • 4.29.0 New: Updated to CheckStyle 6.19.
  • 4.29.0 Fixed: Optional suppression files should no longer generate errors (#231).
  • 4.28.1 Fixed: IllegalStateExceptions from Checkstyle are now treated as parse exceptions (#228).
  • 4.28.0 New: Updated to CheckStyle 6.18.
  • 4.28.0 Fixed: Relative Header check filenames are now resolved relative to the project file (#227).
  • 4.28.0 New: Allow error selection by pressing Enter key (#226). Thanks to František Hartman.
  • 4.27.4 Fixed: errors are now correctly detected when the Checker property 'basedir' is defined (#183).
  • 4.27.3 New: the remaining blacklist time is now displayed in the result message.
  • 4.27.2 Fixed: the reload rules files button now correctly clears the blacklist (#224).
  • 4.27.1 Fixed: basedir now maps to the directory of the current module file, when available (#223).
  • 4.27.0 New: Updated to CheckStyle 6.17.
  • 4.26.0 New: Added support for Eclipse-CS predefined variables (#217).
  • 4.25.2 Fixed: Rule files should no longer be read every time the active configuration is queried (#212).
  • 4.25.2 Fixed: Scan before checkin is now persisted across IDEA restarts (#216).
  • 4.25.1 Fixed: Minimum supported build is now IDEA 14 once again.
  • 4.25.0 New: Updated to CheckStyle 6.15 - thanks to Thomas Harning (@harningt).
  • 4.24.0 New: Added code style importer - thanks to Rustam Vishnyakov (@dyadix).
  • 4.23.0 New: Updated to CheckStyle 6.14.1.
  • 4.22.2 Fixed: Static scan rewritten to use IDEA's thread pooling and block less on read actions (#11).
  • 4.22.1 Fixed: Now treats NPEs and AIOOBEs as parse exceptions (#201, #203).
  • 4.22.0 New: Updated to CheckStyle 6.13.
  • 4.21.2 Fixed: Fixed thread access issue with module lookup in inspection (#200).
  • 4.21.1 Fixed: Now properly swallows parse errors from Checkstyle 6.12.
  • 4.21.0 New: Updated to CheckStyle 6.12.1.
  • 4.20.1 Fixed: Inspection now checks for cancellation (#192).
  • 4.20.1 Fixed: Rules accessed via HTTP no longer use temporary files (#67).
  • 4.20.0 New: Updated to CheckStyle 6.11.2 (#189).
  • 4.19.1 Fixed: Improved handling of unparsable files (#185).
  • 4.19.0 New: Updated to CheckStyle 6.10.1.
  • 4.18.1 Fixed: Prefix added to inspection messages (#181).
  • 4.18.0 New: Updated to CheckStyle 6.9.
  • 4.17.3 Fixed: Temporary suppression of exception in #127 until it's fixed in CheckStyle.
  • 4.17.3 Fixed: Started reducing the embarrassing amount of duplicated code.
  • 4.17.2 Fixed: Errors are also now entered in the event log, so they can be read after the balloon popup closes.
  • 4.17.2 Fixed: Modernised how notifications are raised.
  • 4.17.1 Fixed: Java source files that are marked as generated are no longer scanned (#172).
  • 4.17.1 Fixed: Properties are properly reloaded after hitting previous in the add file wizard (#170).
  • 4.17.0 New: Updated to CheckStyle 6.8.1.
  • 4.17.0 Fixed: TreeWalker logs are now suppressed, reducing event log spam when editing files (#169).
  • 4.17.0 Fixed: Inspection no longer overrides getShortName as per the IDEA source docs - this has resulted in a ShortName change (#173).
  • 4.17.0 Fixed: Only files in the project content source are scanned (#172).
  • 4.17.0 Fixed: Mirrored JAR files are now used when available (#141).
  • 4.17.0 Fixed: Modernised resource bundle usage.
  • 4.16.0 New: Updated to CheckStyle 6.7 (#168).
  • 4.15.0 New: Updated to CheckStyle 6.6 (#150).
  • 4.14.2 Fixed: Cached checkers are now cleaned by a background task (#141).
  • 4.14.2 Fixed: Updated icons to more closely resemble current CheckStyle icon.
  • 4.14.2 Fixed: File writes are now forced to UTF-8 (#84).
  • 4.14.1 Fixed: HTTP rules files should result in fewer temporary files (#149).
  • 4.14.1 Fixed: findFile now uses ReadAction (#140).
  • 4.14.0 New: Moved to CheckStyle 6.5, which requires Java 7 or above.
  • 4.14.0 New: Moved to Java 8. Please make sure IDEA is running on JDK 8. OS X users must use the 14.1 build with the bundled JDK.
  • 4.14.0 New: As such, we now use the IDEA 14.1 SDK.
  • 4.13.2 New: Reverted to IDEA 13 SDK, as when IDEA 14.1 drops with Java 8 for OS X users there's going to be an SDK update anyway.
  • 4.13.2 Fixed: Third party classes were not available in dialogue editors. (#133).
  • 4.13.1 Fixed: Became paranoid about ToolWindow implementation classes to avoid ClassCastExceptions (#131).
  • 4.13.0 New: Moved to IDEA 14 SDK.
  • 4.12.0 New: Files can now be selected from within JAR files (#125).
  • 4.11.2 Fixed: Changed configuration storage to use a sorted map, to stop silly changes to project files.
  • 4.11.2 Fixed: Configuration files are now sorted by description in the configuration panel.
  • 4.11.2 Fixed: Filename defaults should now be taken into account (#119).
  • 4.11.2 Fixed: Cell edits in properties table are now directly committed on action (#119).
  • 4.11.1 Fixed: ClassCast on ToolWindow via presumed race condition (#82).
  • 4.11.0 New: Updated to CheckStyle 6.1.1 (#124).
  • 4.11.0 Fixed: Made DTDs for import_control 1.1 and packages 1.0 available for offline access (#123).
  • 4.10.0 New: Updated to CheckStyle 6.1 (#120).
  • 4.9.0 New: Updated to CheckStyle 6.0 (#116).
  • 4.8.0 New: Updated to CheckStyle 5.9 (#115).
  • 4.7.0 New: Updated to CheckStyle 5.8 (#114).
  • 4.6.2 Removed commons-logging from plugin classpath (#113).
  • 4.6.1 Rules files may now have extension 'checkstyle' (#112).
  • 4.6.0 Fixed caching of project relative locations between projects (#106).
  • 4.6.0 Moved to IDEA SDK 133.696 (13.0.2).
  • 4.5.5 Fixed: Project base directory is no longer permanently cached (#106).
  • 4.5.4 Fixed: Null check for view; thanks to Miel Donkers (#104).
  • 4.5.3 Fixed: Added range check for line numbers (#100).
  • 4.5.2 New: When adding a HTTPS location you can now choose to ignore certificate errors (#99).
  • 4.5.2 Fixed: HTTP basic auth is now supported for URLs with a username/password (#93).
  • 4.5.2 Fixed: Better handling of NPE case (#97).
  • 4.5.1 Fixed: NPE on new project (#97).
  • 4.5.0 New: Updated to CheckStyle 5.7 (#95).
  • 4.5.0 New: Build is now performed via Gradle and hence should be consistent.
  • 4.5.0 Improved: Temporary file paths are now built relative to the module rather than just the package (#92).
  • 4.4.3 Fixed: Clash with IDEA's project path encoding (#88).
  • 4.4.2 Fixed: NPE when DoubleCheckedLocking file is added via config panel (#86).
  • 4.4.2 Fixed: Rules files are now blacklisted for 60s if they fail on load (#76).
  • 4.4.2 New: No default rules file is applied by default (#83).
  • 4.4.1 Fixed: Added a work-around for the API not respecting focus for split editors (#78).
  • 4.4.1 Fixed: ScanCurrentFile now works from the editor if the tool window has not yet been shown (#82).
  • 4.4.1 Fixed: File paths in ImportControl statements are now filtered (#77).
  • 4.4.1 Fixed: File choosers now work with Darcula; thanks to Simon Billingsley (#74).
  • 4.4.1 Fixed: Use configured third-party classpath when creating a test checker to validate the configuration; thanks to Simon Billingsley (#79).
  • 4.4 Improved: Adding rules files now validates the file before committing.
  • 4.4 Improved: Preferences UI improved.
  • 4.4 New: Scan toolwindow now allows quick selection of a configured rules file.
  • 4.3.1 Fixed: Error with ToolWindows on project load.
  • 4.3 New: IDEA build 129.677 or above is required, due to breaking changes in the API (ProblemDescriptor in 99b786ddb if you're nosy).
  • 4.3 Fixed: Scan option should now appear but once in the check-in dialogue (#68).
  • 4.3 Fixed: Better handling of IDEA exceptions during background scanning (#62).
  • 4.3 Plug-in modernisation work.
  • 4.2 New: There is now a specific option to make rules files project relative (#60).
  • 4.2 Fixed: Suppression files accessed via HTTP(S) now work again; thanks to Kristin Young (#61).
  • 4.1 New: There is now a configuration option to stop CheckStyle errors being display as IDEA errors (#50).
  • 4.1 New: A warning is now displayed for rules files using DoubleCheckedLocking.
  • 4.1 Fixed: Case of file prefix should now no longer randomly change (#59).
  • 4.0.2 Fixed: Module classpath should only expose classes, not resources (#56).
  • 4.0.2 Fixed: IllegalArgumentException sometimes thrown by CheckerFactory.getConfig (#55).
  • 4.0.2 Fixed: ToolWindow icon is now 13x13 pixels (#52).
  • 4.0.1 Fixed: NPE on Checker lookup (#49).
  • 4.0.1 Fixed: Read Access error (#39).
  • 4.0 New: You can now specify template CheckStyle configuration in the Default Project (#33).
  • 4.0 New: CheckStyle errors will now be marked as errors by the inspection.
  • 4.0 New: Updated to IDEA 12 API. . This means we now require IDEA 12.0.1 or above.
  • 4.0 Improved: Updated plugin structure to something a little more modern, allowing goodies such as #33.
  • 4.0 Fixed: Dependent modules are now probably included when searching for custom exceptions (#42).
  • 3.9.1 Fixed: Default rules are invalid with CS5.6.
  • 3.9 Fixed: Match on leading project path causes tokenisation silliness (#9).
  • 3.9 New: Updated CheckStyle to 5.6.
  • 3.8.4 Fixed: IDE error on pre-check-in scan (#39).
  • 3.8.3 Fixed: Synchronisation issue introduced by earlier fix (#36).
  • 3.8.2 Fixed: Library classes are now included in the Checkstyle classpath (#34).
  • 3.8.2 Fixed: Removed actions not specific to the current editor from the popup menu (#31).
  • 3.8.2 Fixed: Changed text to match IDEA by removing full-stops (#30).
  • 3.8.1 Fixed: Inline regexp header defs no longer cause an exception (#29).
  • 3.8 New: An option has been added to scan all (i.e. non-Java) files.
  • 3.8 New: A button has been added to scan the current change list.
  • 3.8 New: Modules can now be excluded from scans.
  • 3.8 New: Add File dialogue now sets the base directory to the project directory.
  • 3.8 Improved: RegexpHeader.headerFile is now resolved in the same manner as the suppression file.
  • 3.8 Improved: Rewrote file tokenisation to hopefully help with #9.
  • 3.7 New: Updated CheckStyle to 5.5.
  • 3.7 New: Added button to trigger rules refresh (#25).
  • 3.7 Fixed: Assertion errors from IDEA are now ignored during Inspections executions (#22).
  • 3.7 Fixed: Scan on check-in broken in IDEA 11 (#24).
  • 3.6.2 Improved: Scan results are now sorted alphabetically.
  • 3.6.2 Fixed: Duplicate errors reported during project scans (#16).
  • 3.6.2 Fixed: Edited rule file properties are now properly saved.
  • 3.6.1 Fixed: Deadlock when trying to access editor information with IDEA 11.
  • 3.6 New: Changed to work with IDEA 11. Thanks to Yuri.
  • 3.5 New: Updated CheckStyle to 5.4.
  • 3.5 Fixed: NPE during property handling.
  • 3.5 Fixed: Property change detection improved.
  • 3.5 Improved: General cleanup and deprecation removals.
  • 3.4.1 Fixed: Intermittent NPE on check-in handler registration.
  • 3.4 New: Support for IDEA 10.5. Older versions are no longer supported.
  • 3.3.2 Fixed: Relative paths for suppression filters were not working.
  • 3.3.1 Fixed: StringIndexOutOfBoundsException when creating temporary files under Windows.
  • 3.3 Improved: Suppression filters now work on package paths.
  • 3.3 Improved: Closed and saved files are no longer copied to temporary files.
  • 3.2 New: Updated CheckStyle to 5.3.
  • 3.2 Improved: Temporary files now use original filename. Thanks to Benjy W.
  • 3.2 Improved: Removed deprecated calls to IDEA SDK. This may break compatibility with older versions, but as the SDK isn't annotated with @since, who knows?
  • 3.2 Improved: Introduced setup thread to project scans to improve responsiveness.
  • 3.1.2 Fixed: Property names trimmed.
  • 3.1.2 Fixed: Cache is now invalidated when settings are changed.
  • 3.1.2 Fixed: Files downloaded via HTTP are now scheduled for deletion of JVM termination.
  • 3.1.1 Fixed: NPE on notifications.
  • 3.1 New: Upgraded to CheckStyle 5.1.
  • 3.1 Improved: Suppression files are now searched for relative to the project if they are not present relative to the config file.
  • 3.1 Improved: If a suppression file is not found then it will be ignored and the user will be warned.
  • 3.1 Fixed: Concurrency issues. Thanks to Gerhard Radatz.
  • 3.0.13 Fixed: File location fixes galore! Thanks to Gerhard Radatz.
  • 3.0.13 Fixed: Removing active configuration no longer causes an exception. Thanks to Gerhard Radatz.
  • 3.0.12 Fixed: Inspection ID now correctly conforms to rules. Apologies if this breaks inspection config.
  • 3.0.11 Improved: Module/Project scans are properly batched and a lot faster. Progress feedback is more limited, however.
  • 3.0.10 Fixed: Partial property detection. Thanks to LightGuard.JP.
  • 3.0.9 Fixed: Cache sychronisation problem.
  • 3.0.8 Fixed: Null property in configuration hash-table resulting in NPE.
  • 3.0.7 Fixed: Module scan results are no longer shared between files.
  • 3.0.6 Fixed: IDEA 9 compatibility.
  • 3.0.5 Fixed: Filters (e.g. SuppressionCommentFilter) now work correctly.
  • 3.0.5 Fixed: JavadocPackage now respects allowLegacy. Thanks to Edward Campbell.
  • 3.0.4 Fixed: CheckStyle DTD 1.3 added. Thanks to Jonas Bergvall.
  • 3.0.3 Fixed: Removed dependency on Apache commons-lang to restore compatibility with IDEA 7.0.x/Linux.
  • 3.0.2 Fixed: File configuration column headings were incorrect.
  • 3.0.1 Fixed: Rule files added with no description cause an exception.
  • 3.0 New: Module-specific configuration support.
  • 3.0 New: CheckStyle 5.0 support. Thanks to jicken. Note that CheckStyle 5.0 is not entirely backwards compatible. A quick guide to many of the changes can be found here: http://checkstyle.sourceforge.net/releasenotes.html
  • 3.0 New: Result list may be filtered on severity.
  • 3.0 New: Back-end re-written to support multiple CheckStyle files. You will need to set your configuration once again I'm afraid.
  • 2.4 New: Default CheckStyle file now has generics patch applied.
  • 2.4 New: Scans in progress may be aborted.
  • 2.4 Fixed: Null Pointer Exception with package HTML check.
  • 2.4 Fixed: Null Pointer Exception when files have no module.
  • 2.4 Fixed: Background scan thread does not wait on event thread.
  • 2.3 Fixed: Property values are not lost on configuration commit.
  • 2.3 Fixed: Exceptions in JAR files are not picked up.
  • 2.3 Fixed: Scan Modified Files is now disabled while other scans are active.
  • 2.3 Fixed: Background scan thread is now lower priority.
  • 2.3 Fixed: Module scan now works again.
  • 2.2 Fixed: Now works with IDEA8.0.
  • 2.2 New: Ability to scan on check-in. Thanks to J. G. Christopher.
  • 2.2 Experimental: Ability to load CheckStyle configuration from a URL. This is NOT robust at present.
  • 2.1 New: Ability to scan only modified files if project uses VCS. If the project does not use VCS then this action will have no effect. Thanks to J. G. Christopher for this patch.
  • 2.1 New: Ability to suppress checks on test classes.
  • 2.1 New: Updated CheckStyle to 4.4.
  • 2.1 Fixed: Suppression filters with relative paths now load correctly.
  • 2.1 Fixed: NewlineAtEndOfFile now works on Windows.
  • 2.1 Fixed: PackageHtml test will now work.
  • 2.0.1 WARNING: Due to persistence changes you will need to reconfigure the plug-in after upgrading.
  • 2.0.1 Fixed: Configuration dialogue now enables 'apply' when moving to default scheme from a configuration file.
  • 2.0.1 Changed: Remove deprecated API calls to [hopefully] ensure forward 7.0 compatibility.
  • 2.0.1 Changed: Icons improved.
  • 2.0.0 This version offers no new features. However, 2.x versions will only work with IDEA 7M2 or above.
  • 2.0.0 Fixed: API changes for IDEA 7M2.
  • 1.0.2 Improved: Error handling
  • 1.0.2 Fixed: Exception when settings opened while no project loaded.
  • 1.0.2 Fixed: Exception if inspection cancelled during results processing.
  • 1.0.2 Fixed: Exception if configuration panel opened while puppycrawl.com could not be accessed.
  • 1.0.1 Fixed: Potentially IllegalState if project path cannot be retrieved within IDEA 7M1.
  • 1.0 New: Static scanning for current module implemented.
  • 1.0 New: Ability to add third-party checks.
  • 1.0 New: Ability to define external properties.
  • 1.0 New: Now works with IDEA 7M1.
  • 1.0 Fixed: Exceptions defined in project will no longer generate a CheckStyle error once they have been compiled.
  • 0.5.2 New: Settings are now stored in project, not workspace.
  • 0.5.1 Fixed: NullPointer when a null PSI element is encountered during scanning.
  • 0.5 Improved: Localisation support.
  • 0.5 Improved: Config file locations under the project root are now stored as relative rather than the system-specific absolute path.
  • 0.5 New: CheckStyle icons added.
  • 0.4 New: Added static scanning support.
  • 0.4 New: Updated CheckStyle to 4.3.
  • 0.3 Improved: CheckStyle caching improved.
  • 0.3 Improved: Temporary file deletion.
  • 0.2 Fix: File browser for configuration file filters out directories.
  • 0.1 Initial release.

Resources

Adroit is a smart way to develop android applications. Enhance your application development skills by providing safe checks and speed up development process.

IconicDroid is a custom Android Drawable which allows to draw icons from several iconic font.

Sometimes we want/need to know what's going on behind the scenes but our app is not always connected to our computer to let us check the logs. Galgo will let you display your log messages as an overlay on top of your UI.

Extremely useful for testers who want to have more insight into what's going on behind the scenes in our apps when it misbehaves.

You can also define some basic settings such as background color, text color, text size and number of lines to display on screen so it better fits your needs.

android-weak-handler is a memory safer implementation of android.os.Handler.

Original implementation of Handler always keeps hard reference to handler in queue of execution. Any object in Message or Runnable posted to android.os.Handler will be hard referenced for some time. If you create anonymous Runnable and call to postDelayed with large timeout, that Runnable will be held in memory until timeout passes. Even if your Runnable seems small, it indirectly references owner class, which is usually something as big as Activity or Fragment.

A custom View class implementing a rating bar with 10 stars. The user can touch or swipe to select a rating between 1 and 10. The StarBar supports three rating ranges (red, yellow and green) that are indicated by different colored stars.

Yet another Twitter unofficial client for Android 4.X and Lollipop.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes