DEV Community

Cover image for Codenarc IntelliJ Plugin Updated
Eric Helgeson
Eric Helgeson

Posted on

 

Codenarc IntelliJ Plugin Updated

Codenarc is a static code analysis tool for Groovy. It's been around for quite a while but one feature it lacked was the ability to see the rule violations right inside of IntelliJ.

Luckily one of my co-workers saw that Daniel Demus recently updated the IntelliJ plugin that was originally created by Cédric Champeau.

An example of a rule violation right inside IntelliJ:

You can get the plugin here and check out the code or file a bug on the Github project

One caveat is the plugin currently does not automatically import your codenarc.groovy|xml rule files - you have to enable rules manually in the inspection settings dialog. Though there is a feature request open to do just that.

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.